mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
validate:launcher: Reference exception in a var as we use it in the handling
This commit is contained in:
parent
db2acf1cdf
commit
d17c2ff65c
1 changed files with 1 additions and 1 deletions
|
@ -718,7 +718,7 @@ class GstValidateListener(socketserver.BaseRequestHandler, Loggable):
|
|||
|
||||
try:
|
||||
obj = json.loads(msg)
|
||||
except json.decoder.JSONDecodeError:
|
||||
except json.decoder.JSONDecodeError as e:
|
||||
self.error("Could not deserialize: %s - %s" % (msg, e))
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in a new issue