diff --git a/src/Composer/Repository/Vcs/SvnDriver.php b/src/Composer/Repository/Vcs/SvnDriver.php index 7274c9ccd..753d230fe 100644 --- a/src/Composer/Repository/Vcs/SvnDriver.php +++ b/src/Composer/Repository/Vcs/SvnDriver.php @@ -183,7 +183,7 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface if ($this->useAuth !== true) { return ''; } - $str = ' --no-auth-cache --username "%s" --password "%s"'; + $str = ' --no-auth-cache --username "%s" --password "%s" '; return sprintf($str, $this->svnUsername, $this->svnPassword); }