summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryce Harrington <bryce@bryceharrington.org>2008-01-13 07:52:09 +0000
committerbryce <bryce@users.sourceforge.net>2008-01-13 07:52:09 +0000
commitd8e1fc27bf8d579a749532818d2de070be594013 (patch)
treeb138708de9590f737c93b42156f01188c4921d72
parentFix #181795 (diff)
downloadinkscape-d8e1fc27bf8d579a749532818d2de070be594013.tar.gz
inkscape-d8e1fc27bf8d579a749532818d2de070be594013.zip
Adding extra info on how to get the python-lxml extension.
(bzr r4472)
-rwxr-xr-xshare/extensions/inkex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py
index 61cbacea8..5f12c8917 100755
--- a/share/extensions/inkex.py
+++ b/share/extensions/inkex.py
@@ -56,7 +56,7 @@ def unittouu(string):
try:
from lxml import etree
except:
- sys.exit('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from <http://cheeseshop.python.org/pypi/lxml/>.')
+ sys.exit('The fantastic lxml wrapper for libxml2 is required by inkex.py and therefore this extension. Please download and install the latest version from <http://cheeseshop.python.org/pypi/lxml/>, or install it through your package manager by a command like: sudo apt-get install python-lxml')
def debug(what):
sys.stderr.write(str(what) + "\n")