diff options
author | cedricbonhomme <devnull@localhost> | 2012-11-08 23:08:35 +0100 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-11-08 23:08:35 +0100 |
commit | 901fbd154f16268ca4c9d10af8d038d684c8c4f4 (patch) | |
tree | e131333ad325c6b595345bb16113f1263a57d9dc /source/conf.py | |
parent | HTML username text input is now focused by default. (diff) | |
download | newspipe-901fbd154f16268ca4c9d10af8d038d684c8c4f4.tar.gz newspipe-901fbd154f16268ca4c9d10af8d038d684c8c4f4.tar.bz2 newspipe-901fbd154f16268ca4c9d10af8d038d684c8c4f4.zip |
Porting to Python 3.2. Better, faster, stronger.
Diffstat (limited to 'source/conf.py')
-rw-r--r-- | source/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/conf.py b/source/conf.py index b45b1d51..3f08efcf 100644 --- a/source/conf.py +++ b/source/conf.py @@ -28,9 +28,9 @@ __license__ = "GPLv3" import os -import ConfigParser +import configparser # load the configuration -config = ConfigParser.SafeConfigParser() +config = configparser.SafeConfigParser() try: config.read("./cfg/pyAggr3g470r.cfg") except: |