summaryrefslogtreecommitdiff
path: root/apt-pkg/sourcelist.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-11-29 13:39:41 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-11-29 13:39:41 +0000
commit39442e44c7f68722014dbcd6af061c2856ce76db (patch)
tree29f522eb2c7bcadc5b05466982d3c9d83b7b1933 /apt-pkg/sourcelist.cc
parent5a61e0600b5ba3dc6eb3629185ecc133d6877ae0 (diff)
* fix a string (thanks to bubulle)
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r--apt-pkg/sourcelist.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc
index db895a6c1..e3b4d94f8 100644
--- a/apt-pkg/sourcelist.cc
+++ b/apt-pkg/sourcelist.cc
@@ -241,7 +241,7 @@ bool pkgSourceList::ReadAppend(string File)
Type *Parse = Type::GetType(LineType.c_str());
if (Parse == 0)
- return _error->Error(_("Type '%s' is not known in on line %u in source list %s"),LineType.c_str(),CurLine,File.c_str());
+ return _error->Error(_("Type '%s' is not known on line %u in source list %s"),LineType.c_str(),CurLine,File.c_str());
// Vendor name specified
if (C[0] == '[')