File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -165,9 +165,11 @@ def remote_repo_creator(self):
165
165
except GitCommandError ,e :
166
166
print str (e )
167
167
if os .name == 'nt' :
168
- raise AssertionError ('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"' % tempfile . gettempdir ( ))
168
+ raise AssertionError ('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"' % os . path . dirname ( _mktemp () ))
169
169
else :
170
- raise AssertionError ('Please start a git-daemon to run this test, execute: git-daemon "%s"' % tempfile .gettempdir ())
170
+ raise AssertionError ('Please start a git-daemon to run this test, execute: git-daemon "%s"' % os .path .dirname (_mktemp ()))
171
+ # END make assertion
172
+ #END catch ls remote error
171
173
172
174
# adjust working dir
173
175
prev_cwd = os .getcwd ()
You can’t perform that action at this time.
0 commit comments