Changeset - 9937afa7f093
[Not reviewed]
beta
0 14 0
Marcin Kuzminski - 13 years ago 2012-10-29 21:27:05
marcin@python-works.com
whitespace cleanup
4 files changed with 3 insertions and 4 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/middleware/errormator.py
Show inline comments
 
@@ -25,7 +25,7 @@
 

	
 
try:
 
    from errormator_client import make_errormator_middleware
 
except ImportError:
 
    Errormator = None
 
else:
 
    Errormator = make_errormator_middleware
 
\ No newline at end of file
 
    Errormator = make_errormator_middleware
rhodecode/lib/middleware/sentry.py
Show inline comments
 
@@ -41,7 +41,7 @@ else:
 
                secret_key=config.get('sentry.secret_key'),
 
                project=config.get('sentry.project'),
 
                site=config.get('sentry.site'),
 
                include_paths=list_from_setting(config, 'sentry.include_paths'),
 
                exclude_paths=list_from_setting(config, 'sentry.exclude_paths'),
 
            )
 
            super(Sentry, self).__init__(app, client)
 
\ No newline at end of file
 
            super(Sentry, self).__init__(app, client)
rhodecode/templates/journal/journal_page_repos.html
Show inline comments
 
@@ -41,7 +41,7 @@
 
    <div style="padding:5px 0px 10px 0px;">
 
    ${_('No repositories yet')}
 
    %if h.HasPermissionAny('hg.admin','hg.create.repository')():
 
        ${h.link_to(_('create one now'),h.url('admin_settings_create_repository'),class_="ui-btn")}
 
    %endif
 
    </div>
 
 %endif
 
\ No newline at end of file
 
 %endif
rhodecode/tests/functional/test_home.py
Show inline comments
 
@@ -73,7 +73,6 @@ merge" class="tooltip" href="/vcs_test_h
 

	
 
        try:
 
            response = self.app.get(url(controller='home', action='index'))
 
            response.mustcontain("""var data = {"totalRecords": %s""" % len(Repository.getAll()))
 
        finally:
 
            set_l_dash(False)
 

	
0 comments (0 inline, 0 general)