From cd62fd9826ac2334a92bb5bf8834982758081ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=A4hnel?= Date: Sat, 23 Nov 2019 14:04:22 +0100 Subject: [PATCH] Update usage hint in backup.py (#1662) removed explicit call of the system python, cause the file has a shebang with the mail-in-a-box shipped python. for me the system python complaint, that it is missing some modules --- management/backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/backup.py b/management/backup.py index 11cdbb8a..e1651552 100755 --- a/management/backup.py +++ b/management/backup.py @@ -410,7 +410,7 @@ def list_target_files(config): reason = "The hostname {} cannot be resolved.".format(target.hostname) else: reason = "Unknown error." \ - "Please check running 'python management/backup.py --verify'" \ + "Please check running 'management/backup.py --verify'" \ "from mailinabox sources to debug the issue." raise ValueError("Connection to rsync host failed: {}".format(reason))