projects
/
pyafm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bea71c5
)
Oops, fix `return =` syntax in load_afm().
author
W. Trevor King
<wking@drexel.edu>
Sun, 18 Mar 2012 17:13:08 +0000
(13:13 -0400)
committer
W. Trevor King
<wking@drexel.edu>
Sun, 18 Mar 2012 17:13:08 +0000
(13:13 -0400)
pyafm/storage.py
patch
|
blob
|
history
diff --git
a/pyafm/storage.py
b/pyafm/storage.py
index 2bce2bbd5b98d93a6775b300455ab22b84dec4c7..35845ff32df57c711ac1b6e9f58e56a47429baa5 100644
(file)
--- 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)