#! /bin/sh

set -e

# Handle removal of stale .pyc files to ease transition to
# python-support in Ubuntu, this can be dropped in Lucid + 1.

if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt 1.5.2-1; then
	pycentral pkgremove python-launchpadlib
fi

#DEBHELPER# 

exit 0

