diff options
author | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-12 09:26:06 -0800 |
---|---|---|
committer | olpc user <olpc@xo-5d-f7-86.localdomain> | 2020-01-12 09:26:06 -0800 |
commit | f86d9e4cc87bda162d5280953e1bf873181020d8 (patch) | |
tree | e8877af7960ddd6c35dd2daf06efb1729e1c15ed /backend/resilient | |
parent | 6ac2f4426c146b4ae3930660161f61db6a662a15 (diff) | |
download | standingwithresilience-f86d9e4cc87bda162d5280953e1bf873181020d8.tar.gz standingwithresilience-f86d9e4cc87bda162d5280953e1bf873181020d8.zip |
another change towards python3
Diffstat (limited to 'backend/resilient')
-rw-r--r-- | backend/resilient/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/resilient/__init__.py b/backend/resilient/__init__.py index dfab073..6b6940d 100644 --- a/backend/resilient/__init__.py +++ b/backend/resilient/__init__.py @@ -32,7 +32,7 @@ for auth_subpath, auth_subpaths, auth_subfiles in os.walk(auth_path): for auth_subfile in auth_subfiles: auth_subfile = os.path.join(auth_subpath, auth_subfile) if os.path.isfile(auth_subfile): - os.chmod(auth_subfile, 0600) + os.chmod(auth_subfile, 0o600) def url200(url): try: |