comparison rhodecode/lib/paster_commands/make_rcextensions.py @ 4175:e9f6b533a8f6 kallithea-2.2.5-rebrand

Remove wrong/unnecessary/unfixable comment(s)
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:03:41 -0400
parents ffd45b185016
children 7e5f8c12a3fc
comparison
equal deleted inserted replaced
4174:5692f4608bdc 4175:e9f6b533a8f6
31 import logging 31 import logging
32 import pkg_resources 32 import pkg_resources
33 33
34 from rhodecode.lib.utils import BasePasterCommand, ask_ok 34 from rhodecode.lib.utils import BasePasterCommand, ask_ok
35 35
36 # fix rhodecode import 36 # Add location of top level folder to sys.path
37 from os.path import dirname as dn 37 from os.path import dirname as dn
38 rc_path = dn(dn(dn(os.path.realpath(__file__)))) 38 rc_path = dn(dn(dn(os.path.realpath(__file__))))
39 sys.path.append(rc_path) 39 sys.path.append(rc_path)
40 40
41 log = logging.getLogger(__name__) 41 log = logging.getLogger(__name__)