Skip to content

Commit

Permalink
Fix python3 message print
Browse files Browse the repository at this point in the history
  • Loading branch information
the-code-magician committed Apr 13, 2015
1 parent 6572e78 commit a21ddd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cameo/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,6 @@ def in_ipnb():
elif 'notebook' in front_end.lower():
return True
except Exception as e:
print("Cannot determine if running a notebook because of %s" % e.message)
print("Cannot determine if running a notebook because of %s" % e)
return False
return False

0 comments on commit a21ddd5

Please sign in to comment.