From f8d29565f35c4ad35dbfa69ecf7688d51d735b5c Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Fri, 3 Nov 2017 13:05:56 -0400 Subject: [PATCH] Edits in actions.py --- actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions.py b/actions.py index c758fb6..3f64ef1 100644 --- a/actions.py +++ b/actions.py @@ -143,14 +143,14 @@ def is_git_installed(): def update(): try: - code = subprocess.call(("git", "pull", "--ff-only")) + code = subprocess.call(("git", "pull", "--ff-only", "--quiet")) except FileNotFoundError: print("\nError: Git not found. It's either not installed or you did " "not clone this using git. Install instructions are on the GitHub: " "https://github.com/ClaytonWWilson/Image-fetcher-for-theTVDB.com") return if code == 0: - print("\nProgram has been updated.") + print("\nThe program has been updated.\n") else: print("\nThere was an error while updating. This may be caused by edits " "you have made to the code.")