From: W. Trevor King Date: Sun, 18 Mar 2012 17:13:08 +0000 (-0400) Subject: Oops, fix `return =` syntax in load_afm(). X-Git-Tag: v0.4~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9e24b8dc217c98aacd57ee74b790532a813be90a;p=pyafm.git Oops, fix `return =` syntax in load_afm(). --- diff --git a/pyafm/storage.py b/pyafm/storage.py index 2bce2bb..35845ff 100644 --- a/pyafm/storage.py +++ b/pyafm/storage.py @@ -35,4 +35,4 @@ def load_afm(filename=None, group=None): config.load() _LOG.debug( 'constructing AFM from configuration:\n{}'.format(config.dump())) - return = AFM(config=config) + return AFM(config=config)