Oops, forgot to import os and os.path for FileStorage._create_basedir().
authorW. Trevor King <wking@drexel.edu>
Fri, 16 Mar 2012 04:07:42 +0000 (00:07 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 16 Mar 2012 04:07:42 +0000 (00:07 -0400)
h5config/storage/__init__.py

index a9dc2d4259658bd9c0e383011e3af8acd6864aa6..13992e20510e285a1950318872b189a54978d05f 100644 (file)
@@ -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"