Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 93754 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/lib/portage/pym/portage_db_template.py (-1 / +1 lines)
Lines 40-46 Link Here
40
			raise NotImplementedError("db_template.__init__ was overridden")
40
			raise NotImplementedError("db_template.__init__ was overridden")
41
41
42
	def check_key(self,key):
42
	def check_key(self,key):
43
		if (not key) or not isinstance(key, str):
43
		if (not key) or not isinstance(key, basestring):
44
			raise KeyError, "No key provided. key: %s" % (key)
44
			raise KeyError, "No key provided. key: %s" % (key)
45
	
45
	
46
	def clear(self):
46
	def clear(self):

Return to bug 93754