comparison rhodecode/lib/app_globals.py @ 1307:c1516b35f91d beta

pep8ify
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 03 May 2011 16:54:43 +0200
parents 405b80e4ccd5
children ffd45b185016
comparison
equal deleted inserted replaced
1306:6e1d24503383 1307:c1516b35f91d
1 """The application's Globals object""" 1 """The application's Globals object"""
2 2
3 from beaker.cache import CacheManager 3 from beaker.cache import CacheManager
4 from beaker.util import parse_cache_config_options 4 from beaker.util import parse_cache_config_options
5
5 6
6 class Globals(object): 7 class Globals(object):
7 """Globals acts as a container for objects available throughout the 8 """Globals acts as a container for objects available throughout the
8 life of the application 9 life of the application
9 10