utils.py: Remove unnecessary debugging print

This commit is contained in:
Fabian Würfl 2018-05-30 19:17:17 +02:00
parent 32c78544f9
commit f8b2cc4529

View File

@ -60,7 +60,6 @@ class Dir(object):
def __init__(self, path):
self.name = os.path.basename(path.strip('/'))
self.fullpath = path
print(self.name, self.fullpath)
self.subdirs = {}
self.files = []