mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Woopsi typo
This commit is contained in:
parent
d6b6fff706
commit
d0df028373
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||||
|
|
Loading…
Add table
Reference in a new issue