Commit 5ae839a3 authored by Barry Warsaw's avatar Barry Warsaw

Fix __version__ extraction from $Revision$

parent 893056d9
......@@ -4,7 +4,7 @@ See Minimal.py for an implementation of Berkeley storage that does not support
undo or versioning.
"""
__version__ = '$Revision: 1.30 $'[-2:][0]
__version__ = '$Revision: 1.31 $'.split()[-2:][0]
import sys
import struct
......
......@@ -4,7 +4,7 @@ See Minimal.py for an implementation of Berkeley storage that does not support
undo or versioning.
"""
__version__ = '$Revision: 1.30 $'[-2:][0]
__version__ = '$Revision: 1.31 $'.split()[-2:][0]
import sys
import struct
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment