diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-01-14 16:56:26 +0900 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2013-01-14 16:56:26 +0900 |
commit | 6e4a36d2fe069754368319d01712b873d57e7989 (patch) | |
tree | ec3adddbd1bf094bc1fe4300650a766a5bf025f5 /sphinx/builders/devhelp.py | |
parent | 2b06c656c1a1fc7a5510f51a3d4db1346263f62c (diff) | |
download | sphinx-git-6e4a36d2fe069754368319d01712b873d57e7989.tar.gz |
fix: `import xml` confusing. 2to3 converted `import xml.etree....` into `from . import ...`
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r-- | sphinx/builders/devhelp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py index 28be94cac..81d2e6cee 100644 --- a/sphinx/builders/devhelp.py +++ b/sphinx/builders/devhelp.py @@ -10,6 +10,7 @@ :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ +from __future__ import absolute_import import re from os import path |