##// END OF EJS Templates
changelog: use a Factory for default value for files...
Gregory Szorc -
r34442:50474f0b default
parent child Browse files
Show More
@@ -151,7 +151,7 b' class _changelogrevision(object):'
151 manifest = attr.ib(default=nullid)
151 manifest = attr.ib(default=nullid)
152 user = attr.ib(default='')
152 user = attr.ib(default='')
153 date = attr.ib(default=(0, 0))
153 date = attr.ib(default=(0, 0))
154 files = attr.ib(default=[])
154 files = attr.ib(default=attr.Factory(list))
155 description = attr.ib(default='')
155 description = attr.ib(default='')
156
156
157 class changelogrevision(object):
157 class changelogrevision(object):
General Comments 0
You need to be logged in to leave comments. Login now