From 6b293e90751886a6416db3b4f5c1bb981b62bc23 Mon Sep 17 00:00:00 2001 From: kload Date: Fri, 2 Oct 2015 07:10:45 -0400 Subject: [PATCH] [fix] Do not print backup info --- lib/yunohost/service.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/yunohost/service.py b/lib/yunohost/service.py index 765598bc2..2a69b4d2d 100644 --- a/lib/yunohost/service.py +++ b/lib/yunohost/service.py @@ -553,9 +553,6 @@ def service_safecopy(service, new_conf_file, conf_file, force=False): try: os.remove(conf_backup_file) except OSError: pass - elif os.path.exists(conf_backup_file): - msignals.display(m18n.n('service_configuration_backup', conf_backup_file), - 'info') services[service]['conffiles'][conf_file] = new_hash _save_services(services)