From 67aba82469d0e44545a7657fcca484362edc3463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20H=C3=A4hnel?= Date: Thu, 24 Oct 2019 20:27:34 +0200 Subject: [PATCH] Update backup.py 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))