This is an easy compatiblity change, which uses a workaround to import
a version of 'open' that can support unicode across Python versions.
Affects the object tracker and parameter validation generators.
Change-Id: Ie958dc64168db9e06b36321b4b6ad2336f995ea3
from collections import namedtuple
from vuid_mapping import *
+# This is a workaround to use a Python 2.7 and 3.x compatible syntax.
+from io import open
+
# ObjectTrackerGeneratorOptions - subclass of GeneratorOptions.
#
# Adds options used by ObjectTrackerOutputGenerator objects during
from collections import namedtuple
from vuid_mapping import *
+# This is a workaround to use a Python 2.7 and 3.x compatible syntax.
+from io import open
# ParameterValidationGeneratorOptions - subclass of GeneratorOptions.
#