rename to avoid bad identifiers

This commit is contained in:
mike 2019-11-19 04:41:38 -08:00
parent 8232776e41
commit 66951ce1ae
2 changed files with 14 additions and 10 deletions

View File

@ -246,13 +246,3 @@ class BackupRotator:
else: else:
self.log("Purging directory:", dir_path) self.log("Purging directory:", dir_path)
shutil.rmtree(dir_path) shutil.rmtree(dir_path)
def main():
rotator = BackupRotator()
rotator.run()
if __name__ == "__main__":
main()

14
main.py Normal file
View File

@ -0,0 +1,14 @@
from BackupRotator import BackupRotator
#
def main():
rotator = BackupRotator()
rotator.run()
if __name__ == "__main__":
main()