Skip to content

Commit

Permalink
Added FileNotFoundError definition for Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
rgerkin committed Nov 7, 2017
1 parent 347aaa7 commit 10f2095
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sciunit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
from io import StringIO
except ImportError:
from StringIO import StringIO
if sys.version_info.major < 3:
FileNotFoundError = OSError

import numpy as np
import pandas as pd
Expand Down

0 comments on commit 10f2095

Please sign in to comment.