Skip to content

Commit

Permalink
Merge pull request #291 from r4v5/octal
Browse files Browse the repository at this point in the history
Fix octal representation of this umask
  • Loading branch information
redshiftzero authored Jul 12, 2017
2 parents 4f29b8f + a5035ed commit 00dc245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenOversight/app/main/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from ..models import db, Image, User, Face, Officer, Assignment

# Ensure the file is read/write by the creator only
SAVED_UMASK = os.umask(0077)
SAVED_UMASK = os.umask(0o077)


def redirect_url(default='index'):
Expand Down

0 comments on commit 00dc245

Please sign in to comment.