added a blank line after dir, gives a cleaner page; simplified the first example in README.md

This commit is contained in:
2021-03-25 09:38:25 -04:00
parent bbfa19cac2
commit 34f88c5948
2 changed files with 7 additions and 9 deletions

2
tf.py
View File

@@ -133,7 +133,7 @@ def _dir(d=''):
except:
print("not a valid directory")
s=os.statvfs('/')
print("disk size:{:8d} KB disk free: {} KB".format(s[0]*s[2]//1024,s[0]*s[3]//1024))
print("disk size:{:8d} KB disk free: {} KB\n".format(s[0]*s[2]//1024,s[0]*s[3]//1024))
'''-----cut here if you only need the above functions-----'''