Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Alain Shakour
clowdflows
Commits
e277214e
Commit
e277214e
authored
Sep 28, 2015
by
Janez K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more verbose output on module importer
parent
6b6d6e54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
workflows/module_importer.py
workflows/module_importer.py
+5
-1
No files found.
workflows/module_importer.py
View file @
e277214e
...
...
@@ -50,7 +50,11 @@ def dynamic_import_globals(name, package, localSetAttrFunc):
try
:
m
=
__import__
(
name
,
globals
(),
locals
(),
[
'*'
])
except
ImportError
:
pass
import
sys
,
traceback
print
"Exception in user code:"
print
'-'
*
60
traceback
.
print_exc
(
file
=
sys
.
stdout
)
print
'-'
*
60
except
:
import
sys
,
traceback
print
"Exception in user code:"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment