~gmb/clog/markdown

« back to all changes in this revision

Viewing changes to cloglib/config.py

  • Committer: Graham Binns
  • Date: 2008-02-18 16:39:54 UTC
  • Revision ID: graham.binns@canonical.com-20080218163954-xq25t32n5e6mcg8q
Posting now works using ~/.clog/sites.conf, though I don't like the way config options are working.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
"""Config module for the clog application."""
34
34
 
35
35
import ConfigParser
 
36
import os
36
37
 
37
38
__metaclass__ = type
38
39
 
 
40
CONFIG_DIR = os.environ.get("HOME") + '/.clog'
 
41
 
39
42
class Config:
40
43
    """Config class for the clog application."""
 
44