Skip to content

Commit

Permalink
Gracefully handle import errors in console
Browse files Browse the repository at this point in the history
Fixes opening the console when 3d library is not built

Fixes #41855
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Apr 3, 2021
1 parent 73451bf commit 816eeab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/console/console_sci.py
Expand Up @@ -67,7 +67,10 @@ def __init__(self, parent=None):
self.displayPrompt(self.continuationLine)

for line in _init_commands:
self.runsource(line)
try:
self.runsource(line)
except ModuleNotFoundError:
pass

self.history = []
self.softHistory = ['']
Expand Down

0 comments on commit 816eeab

Please sign in to comment.