We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e13d8 commit aa4a324Copy full SHA for aa4a324
virtualenvwrapper/user_scripts.py
@@ -56,10 +56,10 @@ def run_global(script_name, *args):
56
| stat.S_IROTH # read, others
57
| stat.S_IXOTH) # execute, others
58
PERMISSIONS_SOURCED = PERMISSIONS \
59
- & ~ ( # remove executable bits for
60
- stat.S_IXUSR # ... user
61
- | stat.S_IXGRP # ...
62
- | stat.S_IXOTH)
+ & ~ (# remove executable bits for
+ stat.S_IXUSR # ... user
+ | stat.S_IXGRP # ... group
+ | stat.S_IXOTH) # ... others
63
64
65
GLOBAL_HOOKS = [
0 commit comments