From f36d12a55b4e608f21c81feb8d2b9b4ef7848dc2 Mon Sep 17 00:00:00 2001 From: Clayton Wilson Date: Fri, 3 Nov 2017 13:07:08 -0400 Subject: [PATCH] Small edit in actions --- actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions.py b/actions.py index 3f64ef1..a7d72cd 100644 --- a/actions.py +++ b/actions.py @@ -143,7 +143,7 @@ def is_git_installed(): def update(): try: - code = subprocess.call(("git", "pull", "--ff-only", "--quiet")) + code = subprocess.call(("git", "pull", "--ff-only")) 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: "