]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in `Lib/_android_support.py` (#127699)
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Fri, 6 Dec 2024 17:50:58 +0000 (17:50 +0000)
committerGitHub <noreply@github.com>
Fri, 6 Dec 2024 17:50:58 +0000 (19:50 +0200)
Lib/_android_support.py

index 7572745c851847f6c3cddb49438f9c02d65e94f5..ae506f6a4b57b899600b97ac79a4f04a0f7297e2 100644 (file)
@@ -6,7 +6,7 @@ from time import sleep, time
 # The maximum length of a log message in bytes, including the level marker and
 # tag, is defined as LOGGER_ENTRY_MAX_PAYLOAD at
 # https://cs.android.com/android/platform/superproject/+/android-14.0.0_r1:system/logging/liblog/include/log/log.h;l=71.
-# Messages longer than this will be be truncated by logcat. This limit has already
+# Messages longer than this will be truncated by logcat. This limit has already
 # been reduced at least once in the history of Android (from 4076 to 4068 between
 # API level 23 and 26), so leave some headroom.
 MAX_BYTES_PER_WRITE = 4000