File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1+ 2011-04-10 Doug Hellmann <dhellmann@racemi.com>
2+
3+ * virtualenvwrapper/user_scripts.py (make_hook): Change verbosity
4+ of message telling the user we have created a new hook script for
5+ them.
6+
172011-02-26 Doug Hellmann <dhellmann@racemi.com>
28
39 * docs/sphinx/conf.py: Just hard-code the version.
Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ def run_script(script_path, *args):
2020 """Execute a script in a subshell.
2121 """
2222 if os .path .exists (script_path ):
23- # with open(script_path, 'rt') as f:
24- # print '+' * 80
25- # print f.read()
26- # print '+' * 80
2723 cmd = [script_path ] + list (args )
2824 log .debug ('running %s' , str (cmd ))
2925 try :
@@ -107,7 +103,7 @@ def make_hook(filename, comment):
107103 """
108104 filename = os .path .expanduser (os .path .expandvars (filename ))
109105 if not os .path .exists (filename ):
110- log .warning ('creating %s' , filename )
106+ log .info ('creating %s' , filename )
111107 f = open (filename , 'w' )
112108 try :
113109 f .write ("""#!%(shell)s
You can’t perform that action at this time.
0 commit comments