Explorar el Código

trailing space

till hace 13 años
padre
commit
ba8ccb1955
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Composer/Repository/Vcs/SvnDriver.php

+ 1 - 1
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);
     }