# HG changeset patch # User Jeff Hammel # Date 1335894386 25200 # Node ID 982a775bf3d292d6d1b2579438d5a5521c4fd384 # Parent c530f6265deb5a1580d0b7c384839bc45c42c58c call the proper method diff -r c530f6265deb -r 982a775bf3d2 configuration/configuration.py --- a/configuration/configuration.py Tue May 01 10:33:37 2012 -0700 +++ b/configuration/configuration.py Tue May 01 10:46:26 2012 -0700 @@ -330,7 +330,7 @@ def default_config(self): """configuration defaults""" defaults = {} - for key, value in self.options.items(): + for key, value in self.items(): if 'default' in value: defaults[key] = value['default'] return copy.deepcopy(defaults)