Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9376 - main/branches/prefix/pym/repoman
Date: Sun, 24 Feb 2008 00:09:45
Message-Id: E1JT4R5-0002kS-16@stork.gentoo.org
1 Author: grobian
2 Date: 2008-02-24 00:09:42 +0000 (Sun, 24 Feb 2008)
3 New Revision: 9376
4
5 Modified:
6 main/branches/prefix/pym/repoman/utilities.py
7 Log:
8 getstatusoutput comes from commands
9
10 Modified: main/branches/prefix/pym/repoman/utilities.py
11 ===================================================================
12 --- main/branches/prefix/pym/repoman/utilities.py 2008-02-23 23:46:25 UTC (rev 9375)
13 +++ main/branches/prefix/pym/repoman/utilities.py 2008-02-24 00:09:42 UTC (rev 9376)
14 @@ -45,7 +45,7 @@
15 if vcs == 'svn':
16 logging.info("Performing a " + output.green("svn status -u") + \
17 " with a little magic grep to check for updates.")
18 - retval = getstatusoutput("svn status -u 2>&1 | " + \
19 + retval = commands.getstatusoutput("svn status -u 2>&1 | " + \
20 "egrep -v '^. +.*/digest-[^/]+' | " + \
21 "head -n-1")
22
23
24 --
25 gentoo-commits@l.g.o mailing list