Skip to content

Commit

Permalink
CLN: fix invalid python26 exception specification
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jun 23, 2013
1 parent 3b39e11 commit e054057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/io/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def get_data_fred(name=None, start=dt.datetime(2010, 1, 1),
except KeyError:
if data.ix[3].name[7:12] == 'Error':
raise Exception("Failed to get the data. "
"Check that {} is valid FRED "
"Check that {0!r} is valid FRED "
"series.".format(name))
else:
raise
Expand Down

0 comments on commit e054057

Please sign in to comment.