[Buildbot-commits] buildbot/docs epyrun,1.1,1.2
Brian Warner
warner at users.sourceforge.net
Mon Apr 18 00:27:00 UTC 2005
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/process factory.py,1.7,1.8 step.py,1.60,1.61 base.py,1.44,1.45 interlock.py,1.4,1.5 builder.py,1.21,1.22 process_twisted.py,1.36,1.37 step_twisted.py,1.66,1.67
- Next message (by thread): [Buildbot-commits] buildbot ChangeLog,1.351,1.352 Makefile,1.4,1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/buildbot/buildbot/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8250/docs
Modified Files:
epyrun
Log Message:
Revision: arch at buildbot.sf.net--2004/buildbot--dev--0--patch-42
Creator: Brian Warner <warner at monolith.lothar.com>
merge doc updates [org.apestaart at thomas/buildbot--doc--0--patch-6]
Merge epydoc changes from Thomas, add some hacks of my own. No code
changes to the buildbot itself, although I hacked docs/epyrun a bit.
Index: epyrun
===================================================================
RCS file: /cvsroot/buildbot/buildbot/docs/epyrun,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- epyrun 11 Apr 2005 19:30:30 -0000 1.1
+++ epyrun 18 Apr 2005 00:26:58 -0000 1.2
@@ -106,10 +106,10 @@
try:
#print 'pre-loading', modName
reflect.namedModule(modName)
- except ImportError:
- print 'import error:', modName
- except:
- print 'other error:', modName
+ except ImportError, e:
+ print 'import error:', modName, e
+ except Exception, e:
+ print 'other error:', modName, e
else:
modnames.append(modName)
- Previous message (by thread): [Buildbot-commits] buildbot/buildbot/process factory.py,1.7,1.8 step.py,1.60,1.61 base.py,1.44,1.45 interlock.py,1.4,1.5 builder.py,1.21,1.22 process_twisted.py,1.36,1.37 step_twisted.py,1.66,1.67
- Next message (by thread): [Buildbot-commits] buildbot ChangeLog,1.351,1.352 Makefile,1.4,1.5
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Commits
mailing list