get rid of double separator on initial dir in -t outputs
1 parent 256b6a9 commit f444e594501f76394cfb9487b1f041c7cc380f58
@tundra tundra authored on 17 Jun 2018
Showing 1 changed file
View
6
tdir
sys.stdout.write(root + " is not a directory!\n")
sys.exit(2)
if RECURSE:
for root, dir, files in os.walk(root):
print(root + os.sep)
if root[-1] != os.sep:
root += os.sep
print(root)
else:
BuildFileList(None, root, os.listdir(root))