#!/bin/sh
set -e

# copied from /usr/share/debhelper/autoscripts/prerm-python for now
dpkg -L debconf |
	awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
	xargs rm -f >&2

#DEBHELPER#

exit 0
