Skip to content

Commit

Permalink
error msg covers pandas version too old
Browse files Browse the repository at this point in the history
  • Loading branch information
newgene committed Apr 13, 2021
1 parent 92871d6 commit 28a02ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biothings_client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def __init__(self, url=None):
def _dataframe(obj, dataframe, df_index=True):
'''Converts object to DataFrame (pandas)'''
if not df_avail:
print("Error: pandas module must be installed for as_dataframe option.")
print("Error: pandas module must be installed (or upgraded) for as_dataframe option.")
return
# if dataframe not in ["by_source", "normal"]:
if dataframe not in [1, 2]:
Expand Down

0 comments on commit 28a02ae

Please sign in to comment.