Skip to content

Commit

Permalink
fix to filenotfound
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandogelin committed Dec 7, 2018
1 parent 42aa958 commit 552350b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions refchef/table_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
from yaml import CLoader as Loader, CDumper as Dumper
except ImportError:
from yaml import Loader, Dumper
try:
FileNotFoundError
except NameError:
FileNotFoundError = IOError

from refchef import config
from refchef.github_utils import read_menu_from_github
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="refchef",
version="0.0.5",
version="0.0.6",
author="Andrew Leith & Fernando Gelin",
author_email="aleith@brown.edu",
description="Genome reference manager.",
Expand Down

0 comments on commit 552350b

Please sign in to comment.