summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Glüpker <git@wgmd.de>2019-01-13 19:53:05 +0100
committerAndré Glüpker <git@wgmd.de>2019-01-13 19:53:05 +0100
commit45c98655e184563ed176b7a2b6f8dadd50610873 (patch)
tree20cdb3c66d471b0078ffcfac66ec1e86b20fac17
parentd621d12eb4cce56e21a0be78c4e7b950827250c8 (diff)
downloadupdate-git-45c98655e184563ed176b7a2b6f8dadd50610873.tar.gz
update-git-45c98655e184563ed176b7a2b6f8dadd50610873.tar.bz2
update-git-45c98655e184563ed176b7a2b6f8dadd50610873.zip
Cleanup unused variable
-rwxr-xr-xupdateGit.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/updateGit.py b/updateGit.py
index de1bbc5..648176b 100755
--- a/updateGit.py
+++ b/updateGit.py
@@ -53,7 +53,6 @@ def findChanges(statusoutput):
def updatePath(path):
friendly_path = os.path.basename(path)
dPrint('Repository:', path)
- head = getGitStdout(path, 'rev-parse --abbrev-ref HEAD')
changed = findChanges(getGitStdout(path, 'status --porcelain'))
cur_branch = getGitStdout(path, 'rev-parse --abbrev-ref HEAD')
@@ -126,7 +125,7 @@ def updatePath(path):
# print('Safe branch:', safe_branch)
# Checkout master, if detached HEAD and not proceeded
- if head == 'HEAD':
+ if cur_branch == 'HEAD':
if changed:
print('[%s] Head detached, but changes found. Stash them to checkout %s.' % (
friendly_path,