We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parente052409 commit59879a4Copy full SHA for 59879a4
git/test/lib/helper.py
@@ -180,9 +180,11 @@ def remote_repo_creator(self):
180
exceptGitCommandError,e:
181
printstr(e)
182
ifos.name=='nt':
183
-raiseAssertionError('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"'%tempfile.gettempdir())
+raiseAssertionError('git-daemon needs to run this test, but windows does not have one. Otherwise, run: git-daemon "%s"'%os.path.dirname(_mktemp()))
184
else:
185
-raiseAssertionError('Please start a git-daemon to run this test, execute: git-daemon "%s"'%tempfile.gettempdir())
+raiseAssertionError('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
188
189
# adjust working dir
190
prev_cwd=os.getcwd()