aboutsummaryrefslogtreecommitdiff
path: root/tests/field_size_16_proto3
diff options
context:
space:
mode:
Diffstat (limited to 'tests/field_size_16_proto3')
-rw-r--r--tests/field_size_16_proto3/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/field_size_16_proto3/SConscript b/tests/field_size_16_proto3/SConscript
index 912c038..4a8e16d 100644
--- a/tests/field_size_16_proto3/SConscript
+++ b/tests/field_size_16_proto3/SConscript
@@ -8,7 +8,7 @@ if 'PROTOC_VERSION' in env:
match = re.search('([0-9]+).([0-9]+).([0-9]+)', env['PROTOC_VERSION'])
if match:
- version = map(int, match.groups())
+ version = list(map(int, match.groups()))
# proto3 syntax is supported by protoc >= 3.0.0
if env.GetOption('clean') or (match and version[0] >= 3):