~dobey/tarmac/plugins-tests

« back to all changes in this revision

Viewing changes to tarmac/config.py

  • Committer: Tarmac
  • Author(s): Gavin Panella
  • Date: 2010-09-02 20:45:59 UTC
  • mfrom: (345.2.3 lint-fixes)
  • Revision ID: paul@eventuallyanyway.com-20100902204559-pp01ph3bcli0hdnk
Fix all pyflakes and pep8 warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
    def __init__(self):
33
33
        DEFAULTS = {
34
 
            'log_file': os.path.join(self.CONFIG_HOME, 'tarmac.log'),}
 
34
            'log_file': os.path.join(self.CONFIG_HOME, 'tarmac.log'),
 
35
            }
35
36
 
36
37
        ConfigParser.__init__(self)
37
38