sign (-) from the EAPI, to prevent confusion. (trunk r7912)
svn path=/main/branches/2.1.2/; revision=7934
def __init__(self, cpv, eapi):
self.cpv, self.eapi = cpv, eapi
def __str__(self):
- return "Unable to do any operations on '%s', due to the fact it's EAPI is higher then this portage versions. Please upgrade to a portage version that supports EAPI %s" % (self.cpv, self.eapi)
+ msg = ("Unable to do any operations on '%s', since " + \
+ "it's EAPI is higher than this portage version's. Please upgrade" + \
+ " to a portage version that supports EAPI '%s'.") % \
+ (self.cpv, str(self.eapi).lstrip("-"))
+ return msg