Gentoo Archives: gentoo-commits

From: Magnus Granberg <zorry@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/zorry:master commit in: gobs/pym/
Date: Sat, 28 Apr 2012 14:21:03
Message-Id: 1335622831.6e6c40895ef2b1fb56c71c5ea40ced0c63b0a47f.zorry@gentoo
1 commit: 6e6c40895ef2b1fb56c71c5ea40ced0c63b0a47f
2 Author: Magnus Granberg <zorry <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 28 14:20:31 2012 +0000
4 Commit: Magnus Granberg <zorry <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 28 14:20:31 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/zorry.git;a=commit;h=6e6c4089
7
8 fix config-root for --sync part2
9
10 ---
11 gobs/pym/sync.py | 6 +++---
12 1 files changed, 3 insertions(+), 3 deletions(-)
13
14 diff --git a/gobs/pym/sync.py b/gobs/pym/sync.py
15 index 3fcf31d..95e3123 100644
16 --- a/gobs/pym/sync.py
17 +++ b/gobs/pym/sync.py
18 @@ -34,10 +34,10 @@ def sync_tree():
19 tmpcmdline.append("--sync")
20 tmpcmdline.append("--quiet")
21 tmpcmdline.append("--config_root=" + default_config_root)
22 - print("tmpcmdline: %s", default_config_root)
23 + print("tmpcmdline:" + tmpcmdline)
24 logging.info("Emerge --sync")
25 - fail_sync = 0
26 - #fail_sync = emerge_main(args=tmpcmdline)
27 + #fail_sync = 0
28 + fail_sync = emerge_main(args=tmpcmdline)
29 if fail_sync is True:
30 logging.warning("Emerge --sync fail!")
31 else: