diff options
Diffstat (limited to 'examples/beaker_caching/helloworld.py')
-rw-r--r-- | examples/beaker_caching/helloworld.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/beaker_caching/helloworld.py b/examples/beaker_caching/helloworld.py index 3d37777d7..f64fcdd2e 100644 --- a/examples/beaker_caching/helloworld.py +++ b/examples/beaker_caching/helloworld.py @@ -4,9 +4,9 @@ Illustrate how to load some data, and cache the results. """ -import environment +from environment import Session from model import Person -from meta import Session, FromCache +from caching_query import FromCache # load Person objects. cache the result under the namespace "all_people". print "loading people...." |