Skip to content

Commit

Permalink
Merge pull request #2 from zopefoundation/zodbupdate
Browse files Browse the repository at this point in the history
Add zodbupdate decode mapping
  • Loading branch information
David Glick committed Sep 29, 2018
2 parents af5510d + 138cf39 commit b9e93b0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -12,6 +12,9 @@ Changelog
- Add Support for Python 3
[rudaporto, pbauer, icemac, davisagli]

- Add decode mapping for zodbupdate migration to Python 3.


1.1.3 - 2010-10-02
------------------

Expand Down
5 changes: 5 additions & 0 deletions setup.py
Expand Up @@ -36,4 +36,9 @@
'ZODB',
'Zope2',
],
entry_points={
'zodbupdate.decode': [
'decodes = Products.ZopeVersionControl:zodbupdate_decode_dict',
],
},
)
5 changes: 5 additions & 0 deletions src/Products/ZopeVersionControl/__init__.py
Expand Up @@ -74,3 +74,8 @@ def registerIcon(filename):
setattr(info, filename,
ImageFile('www/%s' % filename, globals())
)


zodbupdate_decode_dict = {
'Products.ZopeVersionControl.EventLog LogEntry message': 'binary',
}

0 comments on commit b9e93b0

Please sign in to comment.