commit: 8ebde1b8598e34caa83f8bcae6185ee4f6e38264
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun May 24 07:38:32 2015 +0000
Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Sep 6 21:18:00 2015 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=8ebde1b8
catalyst/main.py: Comment out the try: except: pair for target.run()
catalyst/main.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/catalyst/main.py b/catalyst/main.py
index 0ba81b9..7e3b55e 100644
--- a/catalyst/main.py
+++ b/catalyst/main.py
@@ -163,12 +163,12 @@ def build_target(addlargs):
"Target \"%s\" not available." % target,
print_traceback=True)
- try:
- target.run()
- except:
- print "!!! catalyst: Error encountered during run of target " +
\
- addlargs["target"]
- sys.exit(1)
+ #try:
+ target.run()
+ #except:
+ #print "!!! catalyst: Error encountered during run of target "
+ \
+ # addlargs["target"]
+ #sys.exit(1)
def main():