From d0df02837347def4b8e9b66c92a2a74937083ff3 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 22 Mar 2019 18:06:39 +0100 Subject: [PATCH] Woopsi typo --- src/yunohost/data_migrations/0009_migrate_to_apps_json.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/yunohost/data_migrations/0009_migrate_to_apps_json.py b/src/yunohost/data_migrations/0009_migrate_to_apps_json.py index 8c81746d9..4f4baa5bd 100644 --- a/src/yunohost/data_migrations/0009_migrate_to_apps_json.py +++ b/src/yunohost/data_migrations/0009_migrate_to_apps_json.py @@ -18,7 +18,7 @@ class MyMigration(Migration): def migrate(self): # 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 lists_to_remove = [ @@ -39,4 +39,4 @@ class MyMigration(Migration): def backward(self): if os.path.exists(APPSLISTS_BACKUP): - os.system("cp %s %s") % (APPSLISTS_BACKUP, APPSLISTS_JSON) + os.system("cp %s %s" % (APPSLISTS_BACKUP, APPSLISTS_JSON))