##// END OF EJS Templates
fix small but critical bug for win32 system access.
fperez -
Show More
@@ -5,7 +5,7 b' General purpose utilities.'
5 5 This is a grab-bag of stuff I find useful in most programs I write. Some of
6 6 these things are also convenient when working at the command line.
7 7
8 $Id: genutils.py 972 2005-12-29 18:45:19Z fperez $"""
8 $Id: genutils.py 980 2005-12-30 15:42:04Z fperez $"""
9 9
10 10 #*****************************************************************************
11 11 # Copyright (C) 2001-2004 Fernando Perez. <fperez@colorado.edu>
@@ -352,7 +352,7 b" if os.name in ('nt','dos'):"
352 352 finally:
353 353 os.chdir(path)
354 354 else:
355 shell_ori('"pushd %s&&"'%path+cmd,verbose,debug,header)
355 shell_ori(cmd,verbose,debug,header)
356 356
357 357 shell.__doc__ = shell_ori.__doc__
358 358
@@ -1,3 +1,8 b''
1 2005-12-30 Fernando Perez <Fernando.Perez@colorado.edu>
2
3 * IPython/genutils.py (shell): fix small but critical bug for
4 win32 system access.
5
1 6 2005-12-29 Fernando Perez <Fernando.Perez@colorado.edu>
2 7
3 8 * IPython/iplib.py (showtraceback): remove use of the
General Comments 0
You need to be logged in to leave comments. Login now