##// END OF EJS Templates
Ready for 0.7.0 release!...
Ready for 0.7.0 release! Small final fixes and manual cleanup (raised font size to 11, the pdf was hard to read).

File last commit:

r0:6f629fcc
r93:d01cf245
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#