'full_location' -> 'location' in database_backup.py

This commit is contained in:
jesopo 2018-09-27 13:16:27 +01:00
parent 5674dc4a82
commit 0fb947dc5a

View file

@ -16,15 +16,15 @@ class Module(object):
@Utils.hook("timer.database-backup")
def backup(self, event):
full_location = self.bot.database.full_location
files = glob.glob("%s.*" % full_location)
location = self.bot.database.location
files = glob.glob("%s.*" % ocation)
files = sorted(files)
if len(files) == 5:
os.remove(files[0])
suffix = datetime.datetime.now().strftime("%y-%m-%d.%H:%M:%S")
backup_file = "%s.%s" % (full_location, suffix)
shutil.copy2(full_location, backup_file)
backup_file = "%s.%s" % (location, suffix)
shutil.copy2(location, backup_file)
event["timer"].redo()