Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #652 from blue-bird1/master
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
FeeiCN committed Jan 16, 2018
2 parents c6d62ce + e87cdc2 commit 809f2ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cobra/pickup.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def pull(self):
# change work directory back.
os.chdir(repo_dir)

if 'Updating' in pull_out or 'up-to-date' in pull_out:
if 'Updating' in pull_out or 'up-to-date' in pull_out or u'最新' in pull_out:
logger.info('[PICKUP] [PULL] pull done.')
return True, None
else:
Expand Down

0 comments on commit 809f2ca

Please sign in to comment.