summaryrefslogtreecommitdiff
path: root/lorry
diff options
context:
space:
mode:
Diffstat (limited to 'lorry')
-rwxr-xr-xlorry12
1 files changed, 7 insertions, 5 deletions
diff --git a/lorry b/lorry
index 6ddb9c3..cbd41ae 100755
--- a/lorry
+++ b/lorry
@@ -24,6 +24,7 @@ import string
import sys
from datetime import datetime
import shutil
+import traceback
__version__ = '0.0'
@@ -92,13 +93,14 @@ class Lorry(cliapp.Application):
with open(arg) as f:
specs = json.load(f)
for name in sorted(specs.keys()):
- try:
- self.progress('Getting: %s' % name)
+ self.progress('Getting: %s' % name)
+ try:
self.gitify(name, specs[name])
- except Exception,e:
+ except Exception,e:
status += 1
- print 'Exception:',e
- logging.debug('Mirroring Error: %s' %e)
+ sys.stderr.write(
+ 'Error mirroring:\n%s' % traceback.format_exc())
+ logging.error(traceback.format_exc())
if status > 0 :
logging.debug('Total Mirrors failed: %d' %status)
status = 1