diff options
| author | shimizukawa <shimizukawa@gmail.com> | 2013-01-14 16:56:26 +0900 |
|---|---|---|
| committer | shimizukawa <shimizukawa@gmail.com> | 2013-01-14 16:56:26 +0900 |
| commit | 5cd280b342b3b7e472be2013ec1e62810ccb1b80 (patch) | |
| tree | ec3adddbd1bf094bc1fe4300650a766a5bf025f5 /sphinx | |
| parent | 716cf552857d9021feaa5ca622c2bfc090dfe742 (diff) | |
| download | sphinx-5cd280b342b3b7e472be2013ec1e62810ccb1b80.tar.gz | |
fix: `import xml` confusing. 2to3 converted `import xml.etree....` into `from . import ...`
Diffstat (limited to 'sphinx')
| -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 28be94ca..81d2e6ce 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 |
