Skip to content

Commit

Permalink
Fix unrelated typo in kernelspec cache code
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-bates committed Apr 4, 2022
1 parent 518cfaf commit dfeac2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def on_modified(self, event):
self.kernel_spec_cache.put_item(kernel_name, kernelspec)
except Exception as e:
self.log.warning("The following exception occurred updating cache entry for: {src_resource_dir} "
"- continuing... ({e})".format(src_resource_dir=event.src_src_resource_dir, e=e))
"- continuing... ({e})".format(src_resource_dir=event.src_resource_dir, e=e))

def on_moved(self, event):
"""Fires when a watched file is moved.
Expand Down

0 comments on commit dfeac2a

Please sign in to comment.