[mezzanine-users] FIle upload permissions

2014-01-22 Thread nathan
Hi, been a while since I upgraded mezzanine. While changing settings.py, I noticed the FILE_UPLOAD_PERMISSIONS = 0o644 instead of 0644. Am I mistaken or is this a typo. Just a quick check. Trying to be helpful. -Nate -- You received this message because you are subscribed to the Google

Re: [mezzanine-users] FIle upload permissions

2014-01-22 Thread Stephen McDonald
The value is octal which requires the o in Python 3: $ python Python 2.7.1 (r271:86832, Jul 31 2011, 19:30:53) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin Type help, copyright, credits or license for more information. 0644 420 0o644 420 $ python3 Python 3.3.2