summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorscoder <none@none>2008-11-16 09:16:36 +0100
committerscoder <none@none>2008-11-16 09:16:36 +0100
commitaecd2fbf5408ceb2846c4b4db933e1e1ec5719f1 (patch)
tree4977b6f44bfa5a8076b3149053e71347dc2816b9 /tools
parent8cf02e40d45718e1973023b939a539bf786618d3 (diff)
downloadpython-lxml-aecd2fbf5408ceb2846c4b4db933e1e1ec5719f1.tar.gz
[svn r4005] r4861@delle: sbehnel | 2008-11-14 10:52:38 +0100
fixed missing imports and name errors --HG-- branch : trunk
Diffstat (limited to 'tools')
-rw-r--r--tools/xpathgrep.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/xpathgrep.py b/tools/xpathgrep.py
index 48843446..2d512852 100644
--- a/tools/xpathgrep.py
+++ b/tools/xpathgrep.py
@@ -3,6 +3,7 @@
try:
import lxml.etree as et
except ImportError, e:
+ import sys
print >> sys.stderr, "ERR: %s." % e
sys.exit(5)