ソースを参照

Typos and punctuation fixed

pull/93/head
flo269 GitHub 8年前
コミット
c20536e95e
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      modules/system/endpoints.py

+ 2
- 2
modules/system/endpoints.py ファイルの表示

@@ -48,7 +48,7 @@ class SystemView(FlaskView):
o.fetch() o.fetch()
g = Git('./') g = Git('./')
g.checkout(name) g.checkout(name)
cbpi.notify("Checkout successful", "Please restart the system")
cbpi.notify("Checkout successful.", "Please restart the system.")
return ('', 204) return ('', 204)
@route('/git/status', methods=['GET']) @route('/git/status', methods=['GET'])
@@ -95,7 +95,7 @@ class SystemView(FlaskView):
repo = Repo('./') repo = Repo('./')
o = repo.remotes.origin o = repo.remotes.origin
info = o.pull() 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) return ('', 204)
@route('/dump', methods=['GET']) @route('/dump', methods=['GET'])


読み込み中…
キャンセル
保存