1
0
Fork 0

settings: Use python3-compatible octal literals (E396)

Fixes old-octal-literal (E396) pylint error.

Signed-off-by: Fabian P. Schmidt <kerel@mailbox.org>
merge-requests/846/head
Fabian P. Schmidt 2019-12-30 18:25:34 +01:00 committed by Pierros Papadeas
parent bfc0fd639b
commit c70bf410a0
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ disable=
W0201, # attribute-defined-outside-init
W0703, # broad-except
# py3k transition issues:
E1608, # old-octal-literal
W1612, # unicode-builtin
W1619, # old-divison
W1633, # round-builtin

View File

@ -395,4 +395,4 @@ if ENVIRONMENT == 'dev':
backend['APP_DIRS'] = True
# needed to ensure data_obs files can be read by nginx
FILE_UPLOAD_PERMISSIONS = 0644
FILE_UPLOAD_PERMISSIONS = 0o0644