commit: b4007bbb3a5cb25d4360c21c34bfb4e9928f9383 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Wed Feb 19 15:32:32 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Mon Jun 16 15:36:55 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b4007bbb
Git Sync: fix missing %s in the success message. --- pym/portage/sync/modules/git/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/sync/modules/git/git.py b/pym/portage/sync/modules/git/git.py index 741daf3..6806ef3 100644 --- a/pym/portage/sync/modules/git/git.py +++ b/pym/portage/sync/modules/git/git.py @@ -139,7 +139,7 @@ class GitSync(object): self.logger(self.xterm_titles, msg) writemsg_level(msg + "\n", level=logging.ERROR, noiselevel=-1) return (exitcode, False) - msg = ">>> Git pull successful" % self.repo.location + msg = ">>> Git pull successful: %s" % self.repo.location self.logger(self.xterm_titles, msg) writemsg_level(msg + "\n") return self.post_sync(portdb, self.repo.location, emerge_config)