#! /bin/sh
# prerm script for #PACKAGE#
#
# see: dh_installdeb(1)

set -e

PACKAGE=zope-replacesupport

dpkg --listfiles $PACKAGE |
	awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
	xargs rm -f >&2

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0


