Skip to content

Commit

Permalink
Switched to month format that supports Python 3
Browse files Browse the repository at this point in the history
The %b specifier for a month in a date-formatting string is listed as identical to %h, but as suggested in #403 it works on Python 3 and %b does not, so switch to that.
  • Loading branch information
jbednar committed Jan 10, 2016
1 parent f6375be commit f7670ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Tutorials/Exploring_Data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
},
"outputs": [],
"source": [
"date_dim = hv.Dimension(\"Date\", value_format=md.DateFormatter('%h %d %Y %H:%M UTC'), type=float)\n",
"date_dim = hv.Dimension(\"Date\", value_format=md.DateFormatter('%b %d %Y %H:%M UTC'), type=float)\n",
"kdims = ['Frame', date_dim]"
]
},
Expand Down

0 comments on commit f7670ac

Please sign in to comment.