##// END OF EJS Templates
Walter's ipipe patch #8:...
Walter's ipipe patch #8: Strip whitespace from docstrings in the detail view. Add a goto command to the browser: Pressing "g" gives a prompt on the last line of the screen where a row number can be entered. Pressing RETURN jumps to that row. Fix _BrowserHelp.__xrepr__(). Fix display of attribute in the footer.

File last commit:

r0:6f629fcc
r238:d1a8a87b
Show More
postinst
13 lines | 219 B | text/plain | TextLexer
#!/bin/sh
set -e
OLD_MODDIR=/usr/lib/python2.2/site-packages/IPython
if [ $1 = "configure" ]; then
if [ -d $OLD_MODDIR ];then
echo "Removing old python2.2 modules"
rm -fr $OLD_MODDIR >&2
fi
fi
#DEBHELPER#