From c403bfe9f33b2c48546d06b439eb75c758797a5e Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 19 Mar 2018 13:38:34 +0100 Subject: [PATCH] Rename a variable --- source/carla_host.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/carla_host.py b/source/carla_host.py index f8506e788..71961ed93 100644 --- a/source/carla_host.py +++ b/source/carla_host.py @@ -65,8 +65,8 @@ except: # ------------------------------------------------------------------------------------------------------------ # Safe exception hook, needed for PyQt5 -def sys_excepthook(type, value, tback): - return sys.__excepthook__(type, value, tback) +def sys_excepthook(typ, value, tback): + return sys.__excepthook__(typ, value, tback) # ------------------------------------------------------------------------------------------------------------ # Session Management support