Skip to content

Commit

Permalink
Renamed MarkdocConfig to Config. The 'Markdoc' prefix is unnecessary.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Voase committed Nov 12, 2009
1 parent 1f0b477 commit b39477b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/markdoc/config.py
Expand Up @@ -17,12 +17,12 @@ class ConfigNotFound(markdoc.exc.AbortError):
pass


class MarkdocConfig(dict):
class Config(dict):

"""A dictionary which represents a single wiki's Markdoc configuration."""

def __init__(self, config_file, config):
super(MarkdocConfig, self).__init__(config)
super(Config, self).__init__(config)
self.setdefault('meta', {})['config_file'] = config_file
self['meta'].setdefault('root', os.path.dirname(config_file))

Expand Down

0 comments on commit b39477b

Please sign in to comment.