comparison rhodecode/controllers/branches.py @ 1514:87ec80c280bb beta

fixed issues with python2.5 added compat module to rhodecode to have one point of fetching backward incompatible libs.
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 07 Oct 2011 02:51:18 +0200
parents b074dfa51292
children da8f1d1b22de 8fdabc8cce1a
comparison
equal deleted inserted replaced
1511:a5981def1961 1514:87ec80c280bb
28 from pylons import tmpl_context as c 28 from pylons import tmpl_context as c
29 import binascii 29 import binascii
30 30
31 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator 31 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator
32 from rhodecode.lib.base import BaseRepoController, render 32 from rhodecode.lib.base import BaseRepoController, render
33 from rhodecode.lib.odict import OrderedDict 33 from rhodecode.lib.compat import OrderedDict
34 from rhodecode.lib import safe_unicode 34 from rhodecode.lib import safe_unicode
35 log = logging.getLogger(__name__) 35 log = logging.getLogger(__name__)
36 36
37 37
38 class BranchesController(BaseRepoController): 38 class BranchesController(BaseRepoController):