#! /bin/sh /usr/share/dpatch/dpatch-run ## 04-python-xml.dpatch by Gregor Hoffleit ## ## DP: Adds message if python-xml is missing. @DPATCH@ diff -Naur skencil-0.6.17.orig/Plugins/Filters/svgloader.py skencil-0.6.17/Plugins/Filters/svgloader.py --- skencil-0.6.17.orig/Plugins/Filters/svgloader.py 2005-02-14 21:30:39.000000000 +0000 +++ skencil-0.6.17/Plugins/Filters/svgloader.py 2006-01-22 10:45:09.546731680 +0000 @@ -51,9 +51,8 @@ try: from xml.sax import saxlib, saxexts except ImportError: - warn_tb(USER, "The Python xml package has to be installed for the svg " - "import filter.\n" - "See the README for more information.") + warn_tb(USER, "Python xml has to be installed to use the SVG import filter.\n" + "On Debian systems, install the 'python-xml' package.") raise # beginning with Python 2.0, the XML modules return Unicode strings,