diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/phpshellsessions/cvssync | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/phpshellsessions/cvssync b/etc/phpshellsessions/cvssync index 503de3a..4a855b4 100644 --- a/etc/phpshellsessions/cvssync +++ b/etc/phpshellsessions/cvssync @@ -68,9 +68,9 @@ if($command_split[2]) { if(!$argv[3]) { echo "\nPlease select which branch you would like:\n\n"; foreach($branches as $branchname => $branchdesc) { - echo "{$branchname} - {$branchdesc}\n"; + echo "{$branchname} \t {$branchdesc}\n"; } - $branch = readline("\n> "); + $branch = readline("> "); echo "\n"; } else { $branch = $argv[3]; |