Fix typo that was causing database_backup.py to not work

This commit is contained in:
jesopo 2018-09-25 11:02:07 +01:00
parent 12f68f55a7
commit 894e95d37d

View file

@ -24,6 +24,6 @@ class Module(object):
suffix = datetime.datetime.now().strftime("%y-%m-%d.%H:%M:%S")
backup_file = "%s.%s" % (full_location, suffix)
shutil.copy2(fulllocation, backup_file)
shutil.copy2(full_location, backup_file)
event["timer"].redo()