Remove Type suffix in auto-generated namespaces, thanks @elemoine

This commit is contained in:
Tom Payne
2012-09-30 15:09:39 +02:00
parent c120c03fb1
commit 64d0954b69

View File

@@ -30,7 +30,7 @@ class Type(object):
return ''.join(lines)
def provide(self):
return 'goog.provide(\'%sType\');\n' % (self.name,)
return 'goog.provide(\'%s\');\n' % (self.name,)
def typedef(self):
lines = []