Skip to content

Commit 0d94db9

Browse files
committed
fix parsing of pulls with no changes
changed in upstream git 7560f547e614244fe1d4648598d4facf7ed33a56 git/git@7560f54
1 parent ce875fc commit 0d94db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clustergit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def check(dirname, options):
399399
)
400400
if options.verbose:
401401
sys.stdout.write(pull + "\n")
402-
if "Already up-to-date" in pull:
402+
if re.search(r'Already up.to.date', pull):
403403
if not options.hide_clean:
404404
messages.append(colorize(Colors.OKGREEN, "Pulled nothing"))
405405
elif "CONFLICT" in pull:

0 commit comments

Comments
 (0)