Skip to content

Commit 0779e98

Browse files
committed
improved error messages in create_all_plugin_docs.py
1 parent 826ec30 commit 0779e98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pluginDoc/create_all_plugin_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
print("create plugin documentation for", cfg)
2525
try:
2626
create_plugin_doc.createPluginDoc(cfg, buildernames)
27-
except Exception:
28-
print("Error", cfg)
27+
except Exception as ex:
28+
print("Error (%s)" % str(ex), cfg)

0 commit comments

Comments
 (0)