From f4f09a774486485dd36399a1df2ab81ce7a4000d 2010-09-29 17:10:15 From: Fernando Perez Date: 2010-09-29 17:10:15 Subject: [PATCH] Fix incorrect script path. --- diff --git a/ipython.py b/ipython.py index 29db095..dd50d01 100755 --- a/ipython.py +++ b/ipython.py @@ -14,5 +14,5 @@ sys.path.insert(0, this_dir) # Now proceed with execution execfile(os.path.join( - this_dir, 'IPython', 'frontend', 'terminal', 'scripts', 'ipython' + this_dir, 'IPython', 'scripts', 'ipython' ))