Mercurial > hg > easyhg
changeset 407:b45e6cd9f1d4
Revert small change that broke use of our auth extension
author | Chris Cannam <chris.cannam@eecs.qmul.ac.uk> |
---|---|
date | Thu, 26 May 2011 15:52:11 +0100 |
parents | c567fed39559 |
children | 005633eed862 |
files | src/hgrunner.cpp |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hgrunner.cpp Thu May 26 15:48:11 2011 +0100 +++ b/src/hgrunner.cpp Thu May 26 15:52:11 2011 +0100 @@ -418,7 +418,10 @@ if (settings.value("useextension", true).toBool()) { QString extpath = getExtensionLocation(); - params.push_front(QString("extensions.easyhg=\"%1\"").arg(extpath)); + // Looks like this one must be without quotes, even though the SSH + // one above only works on Windows if it has quotes (at least where + // there is a space in the path). Odd + params.push_front(QString("extensions.easyhg=%1").arg(extpath)); params.push_front("--config"); } interactive = true;