diff options
author | Guillem Jover <guillem@debian.org> | 2009-11-21 03:14:23 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2009-11-21 03:16:26 +0100 |
commit | 92303f6cba1ad180d7026a60bab9596b8c058fd7 (patch) | |
tree | a6f724708cf3966bd6b9fa9395f8b2ce3f21f50c /scripts/Dpkg/Control | |
parent | a99017c55cfd69135110b48fb77203f413077228 (diff) | |
download | dpkg-92303f6cba1ad180d7026a60bab9596b8c058fd7.tar.gz |
Use angle brackets to mark i/o from descriptors
In this case use “<standard output>” and “<standard input>”, to make
it clear that it's not a file with such name, in the same way we do in
the reset of the code base.
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r-- | scripts/Dpkg/Control/Info.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Control/Info.pm b/scripts/Dpkg/Control/Info.pm index 4856465a7..72fd9abae 100644 --- a/scripts/Dpkg/Control/Info.pm +++ b/scripts/Dpkg/Control/Info.pm @@ -52,7 +52,7 @@ sub new { bless $self, $class; if ($arg) { if ($arg eq "-") { - $self->parse_fh(\*STDIN, _g("standard input")); + $self->parse_fh(\*STDIN, _g("<standard input>")); } else { $self->parse($arg); } |