##// END OF EJS Templates
Walter's ipipe patch #6:...
Walter's ipipe patch #6: Update ichain.__xrepr__() and XMode.__xrepr__() to an generator. Make igrpentry.__xrepr__() more robust. Add try:except: for the attribute display in the footer.

File last commit:

r0:6f629fcc
r230:0c129886
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#