From fca1df68057e2beeb7117cbb050a163eedaf3fa8 Mon Sep 17 00:00:00 2001 From: Kayou Date: Mon, 27 Jul 2020 15:30:15 +0200 Subject: [PATCH] [FIX] patch sources list for armbian (#1028) * [FIX] patch sources list for armbian * Update src/yunohost/data_migrations/0015_migrate_to_buster.py Co-authored-by: Alexandre Aubin --- src/yunohost/data_migrations/0015_migrate_to_buster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/data_migrations/0015_migrate_to_buster.py b/src/yunohost/data_migrations/0015_migrate_to_buster.py index 4f7f8afeb..6af161c89 100644 --- a/src/yunohost/data_migrations/0015_migrate_to_buster.py +++ b/src/yunohost/data_migrations/0015_migrate_to_buster.py @@ -173,7 +173,7 @@ class MyMigration(Migration): command = "sed -i -e 's@ stretch @ buster @g' " \ "-e '/backports/ s@^#*@#@' " \ "-e 's@ stretch/updates @ buster/updates @g' " \ - "-e 's@ stretch-updates @ buster-updates @g' " \ + "-e 's@ stretch-@ buster-@g' " \ "{}".format(f) os.system(command)