diff rhodecode/model/comment.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/model/comment.py	Wed Jul 02 19:04:00 2014 -0400
+++ b/rhodecode/model/comment.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.model.comment
+kallithea.model.comment
 ~~~~~~~~~~~~~~~~~~~~~~~
 
 comments model for RhodeCode
@@ -29,13 +29,13 @@
 from pylons.i18n.translation import _
 from sqlalchemy.util.compat import defaultdict
 
-from rhodecode.lib.utils2 import extract_mentioned_users, safe_unicode
-from rhodecode.lib import helpers as h
-from rhodecode.model import BaseModel
-from rhodecode.model.db import ChangesetComment, User, Repository, \
+from kallithea.lib.utils2 import extract_mentioned_users, safe_unicode
+from kallithea.lib import helpers as h
+from kallithea.model import BaseModel
+from kallithea.model.db import ChangesetComment, User, Repository, \
     Notification, PullRequest
-from rhodecode.model.notification import NotificationModel
-from rhodecode.model.meta import Session
+from kallithea.model.notification import NotificationModel
+from kallithea.model.meta import Session
 
 log = logging.getLogger(__name__)