Commit cd141089 authored by Joshua Haberman's avatar Joshua Haberman

Merge pull request #255 from btabibian/master

adding globals() to exec call for python3 compatibility
parents de5d4550 2bf92b3b
......@@ -53,7 +53,7 @@ def GetVersion():
protobuf library may be loaded instead."""
with open(os.path.join('google', 'protobuf', '__init__.py')) as version_file:
exec(version_file.read())
exec(version_file.read(), globals())
return __version__
......
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