Skip to content

Commit e29610a

Browse files
committed
fixed spelling issue
1 parent bade8ba commit e29610a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/read_directory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def print_directory(path, tabs=0):
3131
isdir = stats[0] & 0x4000
3232

3333
if filesize < 1000:
34-
sizestr = str(filesize) + " by"
34+
sizestr = str(filesize) + " bytes"
3535
elif filesize < 1000000:
3636
sizestr = "%0.1f KB" % (filesize/1000)
3737
else:

0 commit comments

Comments
 (0)