Mercurial > p > roundup > code
comparison roundup/hyperdb.py @ 5388:d26921b851c3
Python 3 preparation: make relative imports explicit.
Tool-generated patch.
| author | Joseph Myers <jsm@polyomino.org.uk> |
|---|---|
| date | Tue, 24 Jul 2018 22:22:08 +0000 |
| parents | 0942fe89e82e |
| children | 23b8e6067f7c |
comparison
equal
deleted
inserted
replaced
| 5387:f7432fc3db4d | 5388:d26921b851c3 |
|---|---|
| 24 import os, re, shutil, sys, weakref | 24 import os, re, shutil, sys, weakref |
| 25 import traceback | 25 import traceback |
| 26 import logging | 26 import logging |
| 27 | 27 |
| 28 # roundup modules | 28 # roundup modules |
| 29 import date, password | 29 from . import date, password |
| 30 from support import ensureParentsExist, PrioList | 30 from .support import ensureParentsExist, PrioList |
| 31 from roundup.i18n import _ | 31 from roundup.i18n import _ |
| 32 from roundup.cgi.exceptions import DetectorError | 32 from roundup.cgi.exceptions import DetectorError |
| 33 | 33 |
| 34 logger = logging.getLogger('roundup.hyperdb') | 34 logger = logging.getLogger('roundup.hyperdb') |
| 35 | 35 |
