summaryrefslogtreecommitdiffstats
path: root/pym/portage/exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/exception.py')
-rw-r--r--pym/portage/exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/exception.py b/pym/portage/exception.py
index e9e61e2ac..64d0f7b0d 100644
--- a/pym/portage/exception.py
+++ b/pym/portage/exception.py
@@ -151,7 +151,7 @@ class UnsupportedAPIException(PortagePackageException):
self.cpv, self.eapi = cpv, eapi
def __str__(self):
msg = _("Unable to do any operations on '%(cpv)s', since "
- "it's EAPI is higher than this portage version's. Please upgrade"
+ "its EAPI is higher than this portage version's. Please upgrade"
" to a portage version that supports EAPI '%(eapi)s'.") % \
{"cpv": self.cpv, "eapi": str(self.eapi).lstrip("-")}
return msg