Fix pylint errors

Update changelog
This commit is contained in:
James Valleroy 2016-11-17 12:13:22 -05:00
parent d328a112cd
commit 9ca42fd271
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
2 changed files with 6 additions and 5 deletions

View File

@ -21,6 +21,7 @@ All notable changes to this project will be documented in this file.
- repro: Use firewalld provided SIP services. - repro: Use firewalld provided SIP services.
- xmpp: Show more clearly if domain is not set. - xmpp: Show more clearly if domain is not set.
- frontpage: Don't show apps requiring login, unless logged in. - frontpage: Don't show apps requiring login, unless logged in.
- ttrss: Show status block.
## [0.11.0] - 2016-09-21 ## [0.11.0] - 2016-09-21
### Added ### Added

View File

@ -27,9 +27,9 @@ from plinth.modules import ttrss
urlpatterns = [ urlpatterns = [
url(r'^apps/ttrss/$', ServiceView.as_view( url(r'^apps/ttrss/$', ServiceView.as_view(
service_id=ttrss.managed_services[0], service_id=ttrss.managed_services[0],
diagnostics_module_name="ttrss", diagnostics_module_name="ttrss",
description=ttrss.description, description=ttrss.description,
show_status_block=True show_status_block=True
), name='index'), ), name='index'),
] ]