Skip to content

Commit

Permalink
Fixed Merge Conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Findlay Yeates committed Oct 22, 2013
2 parents f8fea2a + 6688131 commit cb5c44c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion highcharts/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def set_start_date(self, date):
""" Set Plot Start Date """
if isinstance(date, (int, float)):
date = datetime.datetime.fromtimestamp(date)
elif not isinstance(date, datetime):
elif not isinstance(date, datetime.datetime):
error = "Start Date Format Currently Not Supported: %s" % date
raise HighchartError(error)
date_dict = {
Expand Down
2 changes: 1 addition & 1 deletion highcharts/highchart_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
"size": (int,str),
"slicedOffset": int,
"startAngle": int,
"dataLabels": (dict)
"dataLabels": dict,
},
"scatter": {
"allowPointSelect": bool,
Expand Down

0 comments on commit cb5c44c

Please sign in to comment.