From 0cade754f125bd65bd657fa2b78240a5b7b7f61c Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 4 Jul 2019 16:59:59 +0300 Subject: Add: newline to success message for /updaterepo --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index 7544f0f..a20b8fc 100755 --- a/api.py +++ b/api.py @@ -218,7 +218,7 @@ class VCSWorker(API): dirname, self.GITLAB_DOMAIN, self.GITLAB_PROJECT, ref, name) if ok: - return 'Repository copied successfully' + return 'Repository copied successfully\n' logging.error('Something went wrong when copying repository') return bottle.HTTPError(418) -- cgit v1.2.1