On Sun, Jun 17, 2012 at 8:33 AM, nick.coghlan <python-checkins at python.org> wrote: > + @property > + def version(self): > + msg = '%200s has no version specified' % (type(self),) > + raise NotImplementedError(msg) > + Shouldn't that be "%.200s", rather than "%200s"?