comparison rhodecode/lib/dbmigrate/__init__.py @ 4186:7e5f8c12a3fc kallithea-2.2.5-rebrand

First step in two-part process to rename directories to kallithea. This first step is to change all references in the files where they refer to the old directory name.
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:04:28 -0400
parents ffd45b185016
children
comparison
equal deleted inserted replaced
4185:aaa7c3331186 4186:7e5f8c12a3fc
10 # GNU General Public License for more details. 10 # GNU General Public License for more details.
11 # 11 #
12 # You should have received a copy of the GNU General Public License 12 # You should have received a copy of the GNU General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>. 13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 """ 14 """
15 rhodecode.lib.dbmigrate.__init__ 15 kallithea.lib.dbmigrate.__init__
16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17 17
18 Database migration modules 18 Database migration modules
19 19
20 :created_on: Dec 11, 2010 20 :created_on: Dec 11, 2010
25 25
26 import logging 26 import logging
27 from sqlalchemy import engine_from_config 27 from sqlalchemy import engine_from_config
28 28
29 29
30 from rhodecode.lib.utils import BasePasterCommand, Command, add_cache 30 from kallithea.lib.utils import BasePasterCommand, Command, add_cache
31 from rhodecode.lib.db_manage import DbManage 31 from kallithea.lib.db_manage import DbManage
32 32
33 log = logging.getLogger(__name__) 33 log = logging.getLogger(__name__)
34 34
35 35
36 class UpgradeDb(BasePasterCommand): 36 class UpgradeDb(BasePasterCommand):