Skip to content

Commit

Permalink
Py2 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Mar 4, 2017
1 parent c3d4f3e commit 9428023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/compile/ipynb.py
Expand Up @@ -213,7 +213,7 @@ def get_default_jupyter_config():
abs_path = os.path.join(parent, file)
with open(abs_path) as config_file:
config.update(json.load(config_file))
except FileNotFoundError:
except OSError:
# some paths jupyter uses to find configurations
# may not exist
pass
Expand Down

0 comments on commit 9428023

Please sign in to comment.