File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 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):
165165 except GitCommandError ,e :
166166 print str (e )
167167 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 () ))
169169 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
171173
172174 # adjust working dir
173175 prev_cwd = os .getcwd ()
You can’t perform that action at this time.
0 commit comments