summaryrefslogtreecommitdiff
path: root/src/lxml/html
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2017-08-13 09:08:03 +0200
committerStefan Behnel <stefan_ml@behnel.de>2017-08-13 09:08:03 +0200
commitcb7484ad3aa717ffcaf3bed950eb2a77cce0c5e0 (patch)
tree0e543168e93a1d83d22c86e9d4c78b3cf56514fe /src/lxml/html
parentf3d8c013f82e2cb1a5f237b9a0bfcf34277515e2 (diff)
downloadpython-lxml-cb7484ad3aa717ffcaf3bed950eb2a77cce0c5e0.tar.gz
clean up imports
Diffstat (limited to 'src/lxml/html')
-rw-r--r--src/lxml/html/_diffcommand.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lxml/html/_diffcommand.py b/src/lxml/html/_diffcommand.py
index bcf5a4b0..f2c9cf35 100644
--- a/src/lxml/html/_diffcommand.py
+++ b/src/lxml/html/_diffcommand.py
@@ -1,8 +1,10 @@
+from __future__ import absolute_import
+
import optparse
import sys
import re
import os
-from lxml.html.diff import htmldiff
+from .diff import htmldiff
description = """\
"""