From: David Kalnischkies Date: Mon, 3 May 2010 14:55:11 +0000 (+0200) Subject: replace »« with '' in the internal error msg to have ascii chars for gettext X-Git-Tag: 0.8.0~9^2~54^2~4 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/583f7c147dc479bbdb431aa94c4d589d785207c3?hp=--cc replace »« with '' in the internal error msg to have ascii chars for gettext --- 583f7c147dc479bbdb431aa94c4d589d785207c3 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()); } }