Skip to content

Commit

Permalink
Don't try to detect virtualenv in the frontend
Browse files Browse the repository at this point in the history
There's no point doing the virtualenv check in the frontend, and the
extra warning message is confusing.

ipython/ipykernel#96 is for discussion, this one should just be a
bugfix.
  • Loading branch information
takluyver committed Jan 18, 2016
1 parent b29fe81 commit 24a6478
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions jupyter_console/interactiveshell.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,3 +687,7 @@ def handle_source(self, line):
else:
more = (line != "")
return more, ""

def init_virtualenv(self):
# No need to do this in the frontend, and the warning is confusing
pass

0 comments on commit 24a6478

Please sign in to comment.