1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

Add a newline to the output of arc help --full.

Summary: The output from `arc help --full` is missing a newline character.

Test Plan:
**Before**
```
> arc help --full
      --skip-arcconfig
           Skip the working copy configuration file

      --arcrc-file filename
           Use provided file instead of ~/.arcrc.>
```

**After**
```
> arc help --full
      --skip-arcconfig
           Skip the working copy configuration file

      --arcrc-file filename
           Use provided file instead of ~/.arcrc.
>
```

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9608
This commit is contained in:
Joshua Spence 2014-06-18 08:07:02 +10:00
parent 680ec3670c
commit 9257f1bc85

View file

@ -208,6 +208,7 @@ EOTEXT
__--arcrc-file__ __filename__
Use provided file instead of ~/.arcrc.
EOTEXT
);
}