From 25216ab52ab26907588ac2a9a77816dab9f4f9a6 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 16 Mar 2012 00:07:42 -0400 Subject: [PATCH] Oops, forgot to import os and os.path for FileStorage._create_basedir(). --- h5config/storage/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/h5config/storage/__init__.py b/h5config/storage/__init__.py index a9dc2d4..13992e2 100644 --- 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 . +import os as _os +import os.path as _os_path + class Storage (object): "A storage bakend for loading and saving `Config` instances" -- 2.26.2