From 9c46c107f33d866737dbe120b945dfd887b45dde Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Tue, 17 Apr 2012 10:02:23 -0500 Subject: [PATCH] fixed pickleablestorage import --- VERSION | 2 +- gluon/storage.py | 2 +- gluon/tools.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index f07a6194..e2b60510 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.7 (2012-04-17 09:54:49) dev +Version 1.99.7 (2012-04-17 10:01:57) dev diff --git a/gluon/storage.py b/gluon/storage.py index 1a5c4105..1993e029 100644 --- a/gluon/storage.py +++ b/gluon/storage.py @@ -15,7 +15,7 @@ Provides: import cPickle import portalocker -__all__ = ['List', 'Storage', 'Settings', 'Messages', +__all__ = ['List', 'Storage', 'Settings', 'Messages', 'PickleableStorage', 'StorageList', 'load_storage', 'save_storage'] diff --git a/gluon/tools.py b/gluon/tools.py index 1f2f9394..329c5102 100644 --- a/gluon/tools.py +++ b/gluon/tools.py @@ -26,7 +26,7 @@ import cStringIO from email import MIMEBase, MIMEMultipart, MIMEText, Encoders, Header, message_from_string from contenttype import contenttype -from storage import Storage, PickleableStorage, StorageList, Settings, Messages +from storage import Storage, StorageList, Settings, Messages from utils import web2py_uuid from fileutils import read_file from gluon import *