- Fix typo

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1268 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-09-17 22:32:11 +00:00
parent 9aa6bf39cb
commit 3db676e922
1 changed files with 2 additions and 2 deletions

View File

@ -85,8 +85,8 @@ ResourcePoliciesGatekeeper::get_current_policy(History* history) throw(runtime_e
PolicyIterator policy = _active_policies.find(history);
if (policy == _active_policies.end())
throw runtime_error(_("No active policy associated with this ")
_("history is available."));
throw runtime_error(_("No active policy associated with this "
"history is available."));
return *policy->second;
}