1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 21:32:43 +01:00

Fix two minor formatting issues with bin/repository move-paths

Summary: This gets over-escaped instead of bolded right now, but I only ever hit it when exporting/importing and never both cleaning it up.

Test Plan: Ran `bin/repository move-paths`, saw bolded "Move" instead of ANSI escape sequences.

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D15797
This commit is contained in:
epriestley 2016-04-25 12:22:25 -07:00
parent 892a9a1f07
commit 550a82d438

View file

@ -66,7 +66,7 @@ final class PhabricatorRepositoryManagementMovePathsWorkflow
} else {
$dst = $to.substr($src, strlen($from));
$row['action'] = phutil_console_format('**%s**', pht('Move'));
$row['action'] = tsprintf('**%s**', pht('Move'));
$row['dst'] = $dst;
$row['move'] = true;
$any_changes = true;
@ -94,7 +94,7 @@ final class PhabricatorRepositoryManagementMovePathsWorkflow
->addColumn(
'dst',
array(
'title' => pht('dst'),
'title' => pht('Dst'),
))
->setBorders(true);