Skip to content

Commit

Permalink
bug fix filenotfounderror
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandogelin committed Dec 6, 2018
1 parent 37a312f commit 42aa958
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion refchef/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
input = raw_input
except NameError:
pass

try:
FileNotFoundError
except NameError:
FileNotFoundError = IOError

def config_check(filepath=os.getenv("HOME")):
"""Check if user has config file, if not, runs generat_config()
and returns Config"""
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.4",
version="0.0.5",
author="Andrew Leith & Fernando Gelin",
author_email="[email protected]",
description="Genome reference manager.",
Expand Down

0 comments on commit 42aa958

Please sign in to comment.