diff --git a/rhodecode/controllers/admin/gists.py b/rhodecode/controllers/admin/gists.py --- a/rhodecode/controllers/admin/gists.py +++ b/rhodecode/controllers/admin/gists.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.controllers.admin.gist +kallithea.controllers.admin.gist ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gist controller for RhodeCode @@ -33,19 +33,19 @@ from pylons import request, response, tm from pylons.controllers.util import abort, redirect from pylons.i18n.translation import _ -from rhodecode.model.forms import GistForm -from rhodecode.model.gist import GistModel -from rhodecode.model.meta import Session -from rhodecode.model.db import Gist, User -from rhodecode.lib import helpers as h -from rhodecode.lib.base import BaseController, render -from rhodecode.lib.auth import LoginRequired, NotAnonymous -from rhodecode.lib.utils import jsonify -from rhodecode.lib.utils2 import safe_str, safe_int, time_to_datetime -from rhodecode.lib.helpers import Page +from kallithea.model.forms import GistForm +from kallithea.model.gist import GistModel +from kallithea.model.meta import Session +from kallithea.model.db import Gist, User +from kallithea.lib import helpers as h +from kallithea.lib.base import BaseController, render +from kallithea.lib.auth import LoginRequired, NotAnonymous +from kallithea.lib.utils import jsonify +from kallithea.lib.utils2 import safe_str, safe_int, time_to_datetime +from kallithea.lib.helpers import Page from webob.exc import HTTPNotFound, HTTPForbidden from sqlalchemy.sql.expression import or_ -from rhodecode.lib.vcs.exceptions import VCSError, NodeNotChangedError +from kallithea.lib.vcs.exceptions import VCSError, NodeNotChangedError log = logging.getLogger(__name__)