diff options
author | Guillem Jover <guillem@debian.org> | 2018-10-12 20:46:10 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2019-01-15 03:42:39 +0100 |
commit | 05f666b8e944e7e7cf06966e192f759fa83b4d02 (patch) | |
tree | f8a666231de92b7288c71a4cdadaae01dc8234cd /scripts/Dpkg/Source | |
parent | a71649166e7dabbce315c8e49501ba68676831ef (diff) | |
download | dpkg-05f666b8e944e7e7cf06966e192f759fa83b4d02.tar.gz |
Dpkg::Source::Package::V3::Bzr: Fix format name in output message
Diffstat (limited to 'scripts/Dpkg/Source')
-rw-r--r-- | scripts/Dpkg/Source/Package/V3/Bzr.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Source/Package/V3/Bzr.pm b/scripts/Dpkg/Source/Package/V3/Bzr.pm index f0752c0b1..13d49c742 100644 --- a/scripts/Dpkg/Source/Package/V3/Bzr.pm +++ b/scripts/Dpkg/Source/Package/V3/Bzr.pm @@ -176,7 +176,7 @@ sub do_extract { my @files = $self->get_files(); if (@files > 1) { - error(g_('format v3.0 uses only one source file')); + error(g_('format v3.0 (bzr) uses only one source file')); } my $tarfile = $files[0]; my $comp_ext_regex = compression_get_file_extension_regex(); |