'full_location' -> 'location' in database_backup.py
This commit is contained in:
parent
5674dc4a82
commit
0fb947dc5a
1 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue