Skip to content
Snippets Groups Projects
Commit 71e3a05a authored by Dan Michael O. Heggø's avatar Dan Michael O. Heggø
Browse files

Fix bug introduced in a8709c0e

The missing comma would cause site.images[filename] to fail
parent 5c8abc9b
No related branches found
No related tags found
No related merge requests found
......@@ -382,7 +382,7 @@ class Image(Page):
site.require(1, 11)
Page.__init__(self, site, name, info,
extra_properties={'imageinfo':
(('iiprop', 'timestamp|user|comment|url|size|sha1|metadata|archivename'))
(('iiprop', 'timestamp|user|comment|url|size|sha1|metadata|archivename'), )
})
self.imagerepository = self._info.get('imagerepository', '')
self.imageinfo = self._info.get('imageinfo', ({}, ))[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment