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 be78eb3 commit baaf286
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion refchef/table_utils.py
Expand Up @@ -8,7 +8,11 @@
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
from refchef.utils import *
Expand Down
2 changes: 1 addition & 1 deletion setup.py
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 baaf286

Please sign in to comment.