From bbf41f6658e0976151601056d18ab39d74305e03 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 3 Jul 2012 16:50:05 +0200 Subject: [PATCH] Removing debugging leftover --- lib/core/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/update.py b/lib/core/update.py index 732d3b491..c2f38ecfb 100644 --- a/lib/core/update.py +++ b/lib/core/update.py @@ -35,7 +35,7 @@ def update(): logger.debug(debugMsg) dataToStdout("\r[%s] [INFO] update in progress " % time.strftime("%X")) - process = execute("gita pull %s" % rootDir, shell=True, stdout=PIPE, stderr=PIPE) + process = execute("git pull %s" % rootDir, shell=True, stdout=PIPE, stderr=PIPE) pollProcess(process, True) stdout, stderr = process.communicate()