From b5c32aa8d203dc4e9a895839caffaf1b22703349 Mon Sep 17 00:00:00 2001 From: Marc Garcia Puig Date: Wed, 19 Feb 2020 17:07:35 +0100 Subject: [PATCH] Fixed PR issues --- PythonAPI/util/config.py | 4 ++-- Util/ContentVersions.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PythonAPI/util/config.py b/PythonAPI/util/config.py index 27f91c928..84e98ada0 100755 --- a/PythonAPI/util/config.py +++ b/PythonAPI/util/config.py @@ -203,9 +203,9 @@ def main(): world = client.reload_world() elif args.xodr_path is not None: if os.path.exists(args.xodr_path): - with open(args.xodr_path) as file: + with open(args.xodr_path) as od_file: try: - data = file.read() + data = od_file.read() except OSError: print('file could not be readed.') sys.exit() diff --git a/Util/ContentVersions.txt b/Util/ContentVersions.txt index d99f84b81..0ebb92bf2 100644 --- a/Util/ContentVersions.txt +++ b/Util/ContentVersions.txt @@ -30,4 +30,4 @@ 0.9.5: 20190404_c7b464a 0.9.6: 20190710_0097e66 0.9.7: 20191221_c88604b -Latest: 20200131_6fe6e09 +Latest: 20200219_4637843