Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/amazonbot/config.py

    r8 r28  
    22 
    33__version__ = '$Revision$' 
    4 __author__ = 'Atzm WATANABE <sitosito@p.chan.ne.jp>' 
     4__author__ = 'Atzm WATANABE <atzm@atzm.org>' 
    55 
    66import os, ConfigParser 
    77 
    88_userconfig = 'amazonbot.ini' 
    9 _parser = ConfigParser.SafeConfigParser() 
     9_parser = ConfigParser.RawConfigParser() 
    1010 
    1111def set(sect, key, val): 
     
    3030                        return '' 
    3131 
     32def has_section(sect): 
     33    return _parser.has_section(sect) 
     34 
    3235def write(filename=''): 
    3336        if not filename: 
Note: See TracChangeset for help on using the changeset viewer.