#!/bin/sh
set -e
# Automatically added by dh_ucf/13.6ubuntu1
if [ "$1" = "purge" ]; then
	for ext in .ucf-new .ucf-old .ucf-dist ""; do
		rm -f "/etc/libreoffice/registry/pyuno.xcd$ext"
	done
	
	if [ -x "`command -v ucf`" ]; then
		ucf --purge "/etc/libreoffice/registry/pyuno.xcd"
	fi
	if [ -x "`command -v ucfr`" ]; then
		ucfr --force --purge python3-uno "/etc/libreoffice/registry/pyuno.xcd"
	fi
fi
# End automatically added section
