Skip to content

Commit

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

Fixes #41855

(cherry picked from commit 12905cc)
  • Loading branch information
nyalldawson committed Apr 17, 2021
1 parent 9a7a0a7 commit 1648e16
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 1648e16

Please sign in to comment.