##// 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 151 manifest = attr.ib(default=nullid)
152 152 user = attr.ib(default='')
153 153 date = attr.ib(default=(0, 0))
154 files = attr.ib(default=[])
154 files = attr.ib(default=attr.Factory(list))
155 155 description = attr.ib(default='')
156 156
157 157 class changelogrevision(object):
General Comments 0
You need to be logged in to leave comments. Login now