Skip to content

Commit

Permalink
Make reduction notebook python 3 compatible
Browse files Browse the repository at this point in the history
Closes #126
  • Loading branch information
mwcraig committed May 27, 2016
1 parent 887ca44 commit c30945a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reducer/reducer-template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
"outputs": [],
"source": [
"from __future__ import division\n",
"from __future__ import division, print_function\n",
"\n",
"%matplotlib inline\n",
"\n",
Expand All @@ -75,7 +75,7 @@
"import msumastro\n",
"\n",
"from reducer import __version__\n",
"print __version__"
"print(__version__)"
]
},
{
Expand Down

0 comments on commit c30945a

Please sign in to comment.