Mercurial > p > roundup > code
comparison roundup/configuration.py @ 6126:15c68580578f
fix broken import
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 03 Apr 2020 18:20:17 -0400 |
| parents | c177e7128dc9 |
| children | 546763f4ce44 |
comparison
equal
deleted
inserted
replaced
| 6125:38fbfbb24cbd | 6126:15c68580578f |
|---|---|
| 27 if sys.version_info[0] > 2: | 27 if sys.version_info[0] > 2: |
| 28 import configparser # Python 3 | 28 import configparser # Python 3 |
| 29 else: | 29 else: |
| 30 import ConfigParser as configparser # Python 2 | 30 import ConfigParser as configparser # Python 2 |
| 31 | 31 |
| 32 from exceptions import RoundupException | 32 from roundup.exceptions import RoundupException |
| 33 | 33 |
| 34 # XXX i don't think this module needs string translation, does it? | 34 # XXX i don't think this module needs string translation, does it? |
| 35 | 35 |
| 36 ### Exceptions | 36 ### Exceptions |
| 37 | 37 |
