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 @@ -180,9 +180,11 @@ def remote_repo_creator(self):
180180 except GitCommandError ,e :
181181 print str (e )
182182 if os .name == 'nt' :
183- raise AssertionError ('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"' % tempfile . gettempdir ( ))
183+ raise AssertionError ('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"' % os . path . dirname ( _mktemp () ))
184184 else :
185- raise AssertionError ('Please start a git-daemon to run this test, execute: git-daemon "%s"' % tempfile .gettempdir ())
185+ raise AssertionError ('Please start a git-daemon to run this test, execute: git-daemon "%s"' % os .path .dirname (_mktemp ()))
186+ # END make assertion
187+ #END catch ls remote error
186188
187189 # adjust working dir
188190 prev_cwd = os .getcwd ()
You can’t perform that action at this time.
0 commit comments