File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def run_global(script_name, *args):
58
58
PERMISSIONS_SOURCED = PERMISSIONS \
59
59
& ~ ( # remove executable bits for
60
60
stat .S_IXUSR # ... user
61
- | stat .S_IXGRP # ...
61
+ | stat .S_IXGRP # ...
62
62
| stat .S_IXOTH )
63
63
64
64
@@ -78,7 +78,7 @@ def run_global(script_name, *args):
78
78
79
79
# cpvirtualenv:
80
80
# precpvirtualenv <old> <new> (run),
81
- # postcpvirtualenv (sourced)
81
+ # postcpvirtualenv (sourced)
82
82
83
83
# rmvirtualenv
84
84
("prermvirtualenv" ,
@@ -103,7 +103,7 @@ def run_global(script_name, *args):
103
103
104
104
# mkproject:
105
105
# premkproject <new project name> (run),
106
- # postmkproject (sourced)
106
+ # postmkproject (sourced)
107
107
108
108
# get_env_details
109
109
("get_env_details" ,
@@ -155,7 +155,7 @@ def make_hook(filename, comment):
155
155
f = open (filename , 'w' )
156
156
try :
157
157
# for sourced scripts, the shebang line won't be used;
158
- # it is useful for editors to recognize the file type, though
158
+ # it is useful for editors to recognize the file type, though
159
159
f .write ("#!%(shell)s\n # %(comment)s\n \n " % {
160
160
'comment' : comment ,
161
161
'shell' : os .environ .get ('SHELL' , '/bin/sh' ),
You can’t perform that action at this time.
0 commit comments