Skip to content

Commit

Permalink
Merge pull request #189 from scipp/fix_for_scipp23.07
Browse files Browse the repository at this point in the history
Fix error from missing utils module for recent scipp versions
  • Loading branch information
nvaytet authored Aug 3, 2023
2 parents 6ae709d + c7c7d6c commit d612508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ess/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _make_handlers(
handlers.append(
_make_file_handler(filename, file_level, show_thread, show_process)
)
if sc.utils.running_in_jupyter():
if running_in_jupyter():
handlers.append(sc.logging.make_widget_handler())
return handlers

Expand Down

0 comments on commit d612508

Please sign in to comment.