projects
/
h5config.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
717450e
)
Oops, forgot to import os and os.path for FileStorage._create_basedir().
author
W. Trevor King
<wking@drexel.edu>
Fri, 16 Mar 2012 04:07:42 +0000
(
00:07
-0400)
committer
W. Trevor King
<wking@drexel.edu>
Fri, 16 Mar 2012 04:07:42 +0000
(
00:07
-0400)
h5config/storage/__init__.py
patch
|
blob
|
history
diff --git
a/h5config/storage/__init__.py
b/h5config/storage/__init__.py
index a9dc2d4259658bd9c0e383011e3af8acd6864aa6..13992e20510e285a1950318872b189a54978d05f 100644
(file)
--- a/
h5config/storage/__init__.py
+++ b/
h5config/storage/__init__.py
@@
-15,6
+15,9
@@
# You should have received a copy of the GNU General Public License
# along with h5config. If not, see <http://www.gnu.org/licenses/>.
+import os as _os
+import os.path as _os_path
+
class Storage (object):
"A storage bakend for loading and saving `Config` instances"