Skip to content

Commit

Permalink
py3 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
bwillers committed Jul 19, 2014
1 parent 5470260 commit 46a7a9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from vimception import load_ipython_extension
from .vimception import load_ipython_extension
3 changes: 2 additions & 1 deletion vimception.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function
"""
This is VimCeption
Expand All @@ -18,7 +19,7 @@ def vimception(line=''):
if line != 'off':
display(Javascript(vimception_js))
else:
print line
print(line)
display(Javascript(vimception_js + "to('default');"));

def load_ipython_extension(ip):
Expand Down

0 comments on commit 46a7a9d

Please sign in to comment.