chore: remove logging from tar.py

This commit is contained in:
Samuel Attard 2018-10-11 13:09:47 +11:00
Родитель 5331c9dc72
Коммит 78e956e08a
1 изменённых файлов: 0 добавлений и 3 удалений

Просмотреть файл

@ -7,9 +7,6 @@ target = sys.argv[2]
os.chdir(os.path.dirname(source))
print(os.getcwd())
print(os.path.basename(target), source, os.path.relpath(source))
tarball = tarfile.open(name=os.path.basename(target), mode='w:gz')
tarball.add(os.path.relpath(source))
tarball.close()