Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
fix detail
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Chapoton committed Dec 6, 2018
1 parent 094921c commit f651d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/misc/lazy_import.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ def get_star_imports(module_name):
try:
return star_imports[module_name]
except KeyError:
all_done = sage_all_import_done
all_done = _sage_all_import_done
_sage_all_import_done = True # so that checks pass
module = __import__(module_name, {}, {}, ["*"])
_sage_all_import_done = all_done
Expand Down

0 comments on commit f651d7a

Please sign in to comment.