diff rhodecode/controllers/api/__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
line wrap: on
line diff
--- a/rhodecode/controllers/api/__init__.py	Wed Jul 02 19:04:00 2014 -0400
+++ b/rhodecode/controllers/api/__init__.py	Wed Jul 02 19:04:28 2014 -0400
@@ -12,7 +12,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
-rhodecode.controllers.api
+kallithea.controllers.api
 ~~~~~~~~~~~~~~~~~~~~~~~~~
 
 JSON RPC controller
@@ -35,12 +35,12 @@
 
 from webob.exc import HTTPError
 
-from rhodecode.model.db import User
-from rhodecode.model import meta
-from rhodecode.lib.compat import izip_longest, json
-from rhodecode.lib.auth import AuthUser
-from rhodecode.lib.base import _get_ip_addr as _get_ip, _get_access_path
-from rhodecode.lib.utils2 import safe_unicode, safe_str
+from kallithea.model.db import User
+from kallithea.model import meta
+from kallithea.lib.compat import izip_longest, json
+from kallithea.lib.auth import AuthUser
+from kallithea.lib.base import _get_ip_addr as _get_ip, _get_access_path
+from kallithea.lib.utils2 import safe_unicode, safe_str
 
 log = logging.getLogger('JSONRPC')