summaryrefslogtreecommitdiffstats
path: root/GitAutoDeploy.py
diff options
context:
space:
mode:
authorAlexander Nestorov <alexandernst@gmail.com>2014-09-23 16:03:30 +0200
committerAlexander Nestorov <alexandernst@gmail.com>2014-09-23 16:03:30 +0200
commit923ff2914d8a26c348005ddbe6b4d99df16ad5df (patch)
tree7d3bad6efe20c5b89b4953ba6bad014beb5b2707 /GitAutoDeploy.py
parenteae2be7454a4cb9979bd6e0c87513e4458fa514b (diff)
downloadGit-Auto-Deploy-923ff2914d8a26c348005ddbe6b4d99df16ad5df.zip
Git-Auto-Deploy-923ff2914d8a26c348005ddbe6b4d99df16ad5df.tar.gz
Git-Auto-Deploy-923ff2914d8a26c348005ddbe6b4d99df16ad5df.tar.bz2
Remove some debug prints
Diffstat (limited to 'GitAutoDeploy.py')
-rwxr-xr-xGitAutoDeploy.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/GitAutoDeploy.py b/GitAutoDeploy.py
index 48bcaa7..ce72ffb 100755
--- a/GitAutoDeploy.py
+++ b/GitAutoDeploy.py
@@ -89,7 +89,6 @@ class GitAutoDeploy(BaseHTTPRequestHandler):
cmds.append(repository['deploy'])
gd = config['global_deploy']
- print gd
if len(gd[0]) is not 0:
cmds.insert(0, gd[0])
if len(gd[1]) is not 0:
@@ -97,7 +96,6 @@ class GitAutoDeploy(BaseHTTPRequestHandler):
if(not self.quiet):
print 'Executing deploy command(s)'
- print cmds
for cmd in cmds:
call(['cd "' + path + '" && ' + cmd], shell=True)