Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/modules/git/
Date: Fri, 02 May 2014 23:13:38
Message-Id: 1399071915.b12e14547f95417fe5e0d30c4ef4b8d01ac7925c.dol-sen@gentoo
1 commit: b12e14547f95417fe5e0d30c4ef4b8d01ac7925c
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 19 15:32:32 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Fri May 2 23:05:15 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b12e1454
7
8 Git Sync: fix missing %s in the success message.
9
10 ---
11 pym/portage/sync/modules/git/git.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/pym/portage/sync/modules/git/git.py b/pym/portage/sync/modules/git/git.py
15 index 741daf3..6806ef3 100644
16 --- a/pym/portage/sync/modules/git/git.py
17 +++ b/pym/portage/sync/modules/git/git.py
18 @@ -139,7 +139,7 @@ class GitSync(object):
19 self.logger(self.xterm_titles, msg)
20 writemsg_level(msg + "\n", level=logging.ERROR, noiselevel=-1)
21 return (exitcode, False)
22 - msg = ">>> Git pull successful" % self.repo.location
23 + msg = ">>> Git pull successful: %s" % self.repo.location
24 self.logger(self.xterm_titles, msg)
25 writemsg_level(msg + "\n")
26 return self.post_sync(portdb, self.repo.location, emerge_config)