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

Commit

Permalink
Fix output error (arguments sequence), closes #23
Browse files Browse the repository at this point in the history
  • Loading branch information
blackstream-x committed Aug 16, 2021
1 parent 067db81 commit 1d52977
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions push_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def show_branches_statistics(self):
logging.info('---- Branches summary ----')
logging.info(
'%s of %s pushed successfully, %s failed',
total, successful, failed)
successful, total, failed)
if omitted:
logging.info('%s branches omitted', omitted)
#
Expand Down Expand Up @@ -443,7 +443,7 @@ def show_tags_statistics(self):
logging.info('---- Tags summary ----')
logging.info(
'%s of %s pushed successfully, %s failed',
total, successful, failed)
successful, total, failed)
for tag in self.all_tags:
if tag in self.tags_failed:
logging.info(' - %s push failed', tag)
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.5.0
v2.5.1

0 comments on commit 1d52977

Please sign in to comment.