db_annotate
  • Overview
  • Repository
  • Tickets
  • Statistics
  • Projects

Repository

Improve error message

Parent commits : 61e38c9b6dc5407f50cb46b80cc662ee74cbbc91,
Children commits : 074b93cb9e2d94ef76f61e5b61f93d623992a9e9,

By Laurent Defert on 2015-01-24 12:34:29
Improve error message

Browse content
Difference with parent commit 61e38c9b6dc5407f50cb46b80cc662ee74cbbc91
Files modified:
dot.py
--- 
+++ 
@@ -13,4 +13,4 @@
         try:
             output = subprocess.check_output(cmd)
         except subprocess.CalledProcessError as e:
-            print('Error: command exited with status %i, displaying:\n%s' % (e.returncode, e.output), file=sys.stderr)
+            print('Error: command exited while processing fie %s with status %i, displaying:\n%s' % (gv_file, e.returncode, e.output), file=sys.stderr)

Generated with KisssPM