diff --git a/rhodecode/lib/paster_commands/ishell.py b/rhodecode/lib/paster_commands/ishell.py --- a/rhodecode/lib/paster_commands/ishell.py +++ b/rhodecode/lib/paster_commands/ishell.py @@ -12,7 +12,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . """ -rhodecode.lib.paster_commands.ishell +kallithea.lib.paster_commands.ishell ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ interactive shell paster command for RhodeCode @@ -29,7 +29,7 @@ import os import sys import logging -from rhodecode.lib.utils import BasePasterCommand +from kallithea.lib.utils import BasePasterCommand # Add location of top level folder to sys.path from os.path import dirname as dn @@ -60,7 +60,7 @@ class Command(BasePasterCommand): import time import shutil import datetime - from rhodecode.model.db import * + from kallithea.model.db import * try: from IPython import embed