##// END OF EJS Templates
templateutil: fix a missing ABCMeta assignment...
Augie Fackler -
r43765:3e57809d default
parent child Browse files
Show More
@@ -111,6 +111,8 b' class wrapped(object):'
111 class mappable(object):
111 class mappable(object):
112 """Object which can be converted to a single template mapping"""
112 """Object which can be converted to a single template mapping"""
113
113
114 __metaclass__ = abc.ABCMeta
115
114 def itermaps(self, context):
116 def itermaps(self, context):
115 yield self.tomap(context)
117 yield self.tomap(context)
116
118
General Comments 0
You need to be logged in to leave comments. Login now