From 9e24b8dc217c98aacd57ee74b790532a813be90a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 18 Mar 2012 13:13:08 -0400 Subject: [PATCH] Oops, fix `return =` syntax in load_afm(). --- pyafm/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.26.2