DocumentationTools/ModuleDocumentor.py

branch
6_0_x
changeset 4268
6f0af8933902
parent 4022
f5f42921717e
--- a/DocumentationTools/ModuleDocumentor.py	Mon May 25 16:27:07 2015 +0200
+++ b/DocumentationTools/ModuleDocumentor.py	Sat May 30 12:39:30 2015 +0200
@@ -277,6 +277,8 @@
                        })
         except TagError as e:
             sys.stderr.write(
+                "Error processing {0}.\n".format(self.module.file))
+            sys.stderr.write(
                 "Error in tags of description of module {0}.\n".format(
                     self.module.name))
             sys.stderr.write("{0}\n".format(e))
@@ -427,6 +429,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of class {0}.\n".format(
                         className))
                 sys.stderr.write("{0}\n".format(e))
@@ -509,6 +513,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of method {0}.{1}.\n".format(
                         className, '__init__'))
                 sys.stderr.write("{0}\n".format(e))
@@ -535,6 +541,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of method {0}.{1}.\n".format(
                         className, method))
                 sys.stderr.write("{0}\n".format(e))
@@ -581,6 +589,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of Ruby module {0}.\n"
                     .format(rbModuleName))
                 sys.stderr.write("{0}\n".format(e))
@@ -624,6 +634,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of class {0}.\n".format(
                         className))
                 sys.stderr.write("{0}\n".format(e))
@@ -685,6 +697,8 @@
                        })
             except TagError as e:
                 sys.stderr.write(
+                    "Error processing {0}.\n".format(self.module.file))
+                sys.stderr.write(
                     "Error in tags of description of function {0}.\n".format(
                         funcName))
                 sys.stderr.write("{0}\n".format(e))

eric ide

mercurial