Woopsi typo

This commit is contained in:
Alexandre Aubin 2019-03-22 18:06:39 +01:00
parent d6b6fff706
commit d0df028373

View file

@ -18,7 +18,7 @@ class MyMigration(Migration):
def migrate(self): def migrate(self):
# Backup current app list json # Backup current app list json
os.system("cp %s %s") % (APPSLISTS_JSON, APPSLISTS_BACKUP) os.system("cp %s %s" % (APPSLISTS_JSON, APPSLISTS_BACKUP))
# Remove all the deprecated lists # Remove all the deprecated lists
lists_to_remove = [ lists_to_remove = [
@ -39,4 +39,4 @@ class MyMigration(Migration):
def backward(self): def backward(self):
if os.path.exists(APPSLISTS_BACKUP): if os.path.exists(APPSLISTS_BACKUP):
os.system("cp %s %s") % (APPSLISTS_BACKUP, APPSLISTS_JSON) os.system("cp %s %s" % (APPSLISTS_BACKUP, APPSLISTS_JSON))