Changeset - 81397bd3e77f
[Not reviewed]
beta
0 3 0
Mads Kiilerich - 13 years ago 2013-01-30 01:46:19
madski@unity3d.com
Transplanted from: c36bb72719e1
fix a couple of typos
3 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/notification.py
Show inline comments
 
@@ -72,7 +72,7 @@ class NotificationModel(BaseModel):
 
        from rhodecode.lib.celerylib import tasks, run_task
 

	
 
        if recipients and not getattr(recipients, '__iter__', False):
 
            raise Exception('recipients must be a list of iterable')
 
            raise Exception('recipients must be a list or iterable')
 

	
 
        created_by_obj = self._get_user(created_by)
 

	
 
@@ -242,7 +242,7 @@ class NotificationModel(BaseModel):
 
class EmailNotificationModel(BaseModel):
 

	
 
    TYPE_CHANGESET_COMMENT = Notification.TYPE_CHANGESET_COMMENT
 
    TYPE_PASSWORD_RESET = 'passoword_link'
 
    TYPE_PASSWORD_RESET = 'password_link'
 
    TYPE_REGISTRATION = Notification.TYPE_REGISTRATION
 
    TYPE_PULL_REQUEST = Notification.TYPE_PULL_REQUEST
 
    TYPE_PULL_REQUEST_COMMENT = Notification.TYPE_PULL_REQUEST_COMMENT
rhodecode/templates/admin/repos/repo_edit.html
Show inline comments
 
@@ -279,7 +279,7 @@
 
           </div>
 
           <div class="field" style="border:none;color:#888">
 
           <ul>
 
                <li>${_('This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems. If you need fully delete it from file system please do it manually')}</li>
 
                <li>${_('This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems. If you need to fully delete it from file system please do it manually')}</li>
 
           </ul>
 
           </div>
 
        </div>
rhodecode/templates/email_templates/changeset_comment.html
Show inline comments
 
@@ -7,6 +7,6 @@ ${body}
 

	
 
% if status_change is not None:
 
<div>
 
    ${_('New status$')} -&gt; ${status_change}
 
    ${_('New status')} -&gt; ${status_change}
 
</div>
 
% endif
0 comments (0 inline, 0 general)