Skip to content

Commit

Permalink
Modified gantt datasource validation error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoginski committed Sep 3, 2016
1 parent 1a1d762 commit 7681352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotly/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ def _validate_gantt(df):
if key not in df:
raise exceptions.PlotlyError(
"The columns in your dataframe must include the "
"keys".format(REQUIRED_GANTT_KEYS)
"following keys: {0}".format(', '.join(REQUIRED_GANTT_KEYS))
)

num_of_rows = len(df.index)
Expand Down

0 comments on commit 7681352

Please sign in to comment.