From c20536e95e8ad64946a36b0fef3667bc45886f7f Mon Sep 17 00:00:00 2001 From: flo269 Date: Tue, 18 Jul 2017 12:05:46 +0200 Subject: [PATCH] Typos and punctuation fixed --- modules/system/endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/endpoints.py b/modules/system/endpoints.py index bfb23b3..1d6f9d2 100755 --- a/modules/system/endpoints.py +++ b/modules/system/endpoints.py @@ -48,7 +48,7 @@ class SystemView(FlaskView): o.fetch() g = Git('./') g.checkout(name) - cbpi.notify("Checkout successful", "Please restart the system") + cbpi.notify("Checkout successful.", "Please restart the system.") return ('', 204) @route('/git/status', methods=['GET']) @@ -95,7 +95,7 @@ class SystemView(FlaskView): repo = Repo('./') o = repo.remotes.origin info = o.pull() - cbpi.notify("Pull successful", "The lasted updated was downloaded. Please restart the system") + cbpi.notify("Pull successful", "The lastet update was downloaded. Please restart the system.") return ('', 204) @route('/dump', methods=['GET'])