From: W. Trevor King Date: Fri, 16 Mar 2012 04:07:42 +0000 (-0400) Subject: Oops, forgot to import os and os.path for FileStorage._create_basedir(). X-Git-Tag: v0.2~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=25216ab52ab26907588ac2a9a77816dab9f4f9a6;p=h5config.git Oops, forgot to import os and os.path for FileStorage._create_basedir(). --- 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"