Commit ea99b7f8067fb010c65ee99d1960592a671d79ce
1 parent
91c4cae1
Exists in
master
and in
39 other branches
Fixing flake8 warnings
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
colab/settings.py
@@ -243,16 +243,16 @@ MESSAGE_TAGS = { | @@ -243,16 +243,16 @@ MESSAGE_TAGS = { | ||
243 | messages.ERROR: 'alert-danger', | 243 | messages.ERROR: 'alert-danger', |
244 | } | 244 | } |
245 | 245 | ||
246 | -# Feedzilla (planet) | ||
247 | -from feedzilla.settings import * | 246 | +# Feedzilla (planet) |
247 | +from feedzilla.settings import * # noqa (flake8 ignore) | ||
248 | FEEDZILLA_PAGE_SIZE = 5 | 248 | FEEDZILLA_PAGE_SIZE = 5 |
249 | FEEDZILLA_SITE_TITLE = _(u'Planet Colab') | 249 | FEEDZILLA_SITE_TITLE = _(u'Planet Colab') |
250 | FEEDZILLA_SITE_DESCRIPTION = _(u'Colab blog aggregator') | 250 | FEEDZILLA_SITE_DESCRIPTION = _(u'Colab blog aggregator') |
251 | 251 | ||
252 | -# Mailman API settings | 252 | +# Mailman API settings |
253 | MAILMAN_API_URL = 'http://localhost:9000' | 253 | MAILMAN_API_URL = 'http://localhost:9000' |
254 | 254 | ||
255 | -# BrowserID / Persona | 255 | +# BrowserID / Persona |
256 | SITE_URL = 'http://localhost:8000' | 256 | SITE_URL = 'http://localhost:8000' |
257 | BROWSERID_AUDIENCES = [SITE_URL, SITE_URL.replace('https', 'http')] | 257 | BROWSERID_AUDIENCES = [SITE_URL, SITE_URL.replace('https', 'http')] |
258 | 258 | ||
@@ -265,7 +265,7 @@ BROWSERID_CREATE_USER = False | @@ -265,7 +265,7 @@ BROWSERID_CREATE_USER = False | ||
265 | 265 | ||
266 | REVPROXY_ADD_REMOTE_USER = True | 266 | REVPROXY_ADD_REMOTE_USER = True |
267 | 267 | ||
268 | -# Converse.js settings | 268 | +# Converse.js settings |
269 | # This URL must use SSL in order to keep chat sessions secure | 269 | # This URL must use SSL in order to keep chat sessions secure |
270 | CONVERSEJS_BOSH_SERVICE_URL = SITE_URL + '/http-bind' | 270 | CONVERSEJS_BOSH_SERVICE_URL = SITE_URL + '/http-bind' |
271 | 271 |