# HG changeset patch # User Chris Cannam # Date 1306421531 -3600 # Node ID b45e6cd9f1d4012aefbc3a0b24dd6095f003e127 # Parent c567fed39559b28c3630e84c8423bb382a24ac54 Revert small change that broke use of our auth extension diff -r c567fed39559 -r b45e6cd9f1d4 src/hgrunner.cpp --- 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;