Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Haster <chaster@utexas.edu>2020-11-23 00:05:22 +0300
committerChristopher Haster <chaster@utexas.edu>2020-11-23 00:05:22 +0300
commit0ea2871e2472c779e686f0af76e45927cb20b72d (patch)
tree2546663039abf16ea8adb1303ae5f8fd08a1ca04 /scripts
parentf215027fd420468f793743ef8729701f25554b34 (diff)
Fixed typo in scripts/readtree.py
Not sure how this went unnoticed, I guess this is the first bug that needed in-depth inspection after the a last-minute argument cleanup in the debug scripts.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/readtree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/readtree.py b/scripts/readtree.py
index 36135ab..be514e3 100755
--- a/scripts/readtree.py
+++ b/scripts/readtree.py
@@ -106,7 +106,7 @@ def main(args):
struct.unpack('<HH', superblock[1].data[0:4].ljust(4, b'\xff'))))
print("%-47s%s" % ("littlefs v%s.%s" % version,
"data (truncated, if it fits)"
- if not any([args.no_truncate, args.tags, args.log, args.all]) else ""))
+ if not any([args.no_truncate, args.log, args.all]) else ""))
# print gstate
print("gstate 0x%s" % ''.join('%02x' % c for c in gstate))