Skip to content

Commit f52da1d

Browse files
committed
...
1 parent bccc93f commit f52da1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def merge_git():
141141

142142
git = subprocess.Popen(['git', 'status'], stdout=subprocess.PIPE)
143143
result = git.communicate()[0].strip().split('\n')
144-
if not result[-1].startswith('nothing to commit'):
144+
if result[-1].startswith('nothing to commit'):
145145
print 'ERROR: Nothing to merge'
146146
return 1
147147

0 commit comments

Comments
 (0)