diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-03 16:55:11 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-03 16:55:11 +0200 |
commit | 583f7c147dc479bbdb431aa94c4d589d785207c3 (patch) | |
tree | 9c5fe9a4d4340bb755d7321d8284484cdf267605 | |
parent | edde664d0cc5fe46f572696c605832700c553b9e (diff) |
replace »« with '' in the internal error msg to have ascii chars for gettext
-rw-r--r-- | apt-pkg/depcache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index a63deee3a..659c4227e 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -848,7 +848,7 @@ void pkgDepCache::Update(OpProgress *Prog) unsigned long const G = *g; recheck.erase(g); if (unlikely(ReInstallPseudoForGroup(G, recheck) == false)) - _error->Warning(_("Internal error, group »%s« has no installable pseudo package"), GrpIterator(*Cache, Cache->GrpP + *g).Name()); + _error->Warning(_("Internal error, group '%s' has no installable pseudo package"), GrpIterator(*Cache, Cache->GrpP + *g).Name()); } } |