##// END OF EJS Templates
fix cd -b crash (patch by Ville)
fperez -
Show More
@@ -1,7 +1,7 b''
1 1 # -*- coding: utf-8 -*-
2 2 """Magic functions for InteractiveShell.
3 3
4 $Id: Magic.py 990 2006-01-04 06:59:02Z fperez $"""
4 $Id: Magic.py 991 2006-01-04 18:15:34Z fperez $"""
5 5
6 6 #*****************************************************************************
7 7 # Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
@@ -2286,7 +2286,7 b' Defaulting color scheme to \'NoColor\'"""'
2286 2286 else:
2287 2287 if bkms:
2288 2288 error("Bookmark '%s' not found. "
2289 "Use '%bookmark -l' to see your bookmarks." % ps)
2289 "Use '%%bookmark -l' to see your bookmarks." % ps)
2290 2290 else:
2291 2291 print "Bookmarks not set - use %bookmark <bookmarkname>"
2292 2292 return
@@ -1,3 +1,8 b''
1 2006-01-04 Fernando Perez <Fernando.Perez@colorado.edu>
2
3 * IPython/Magic.py (magic_cd): fix crash when cd -b was used.
4 Ville's patch.
5
1 6 2006-01-03 Fernando Perez <Fernando.Perez@colorado.edu>
2 7
3 8 * IPython/iplib.py (handle_auto): changed autocall semantics to
General Comments 0
You need to be logged in to leave comments. Login now