mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 04:45:47 +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:
|
try:
|
||||||
obj = json.loads(msg)
|
obj = json.loads(msg)
|
||||||
except json.decoder.JSONDecodeError:
|
except json.decoder.JSONDecodeError as e:
|
||||||
self.error("Could not deserialize: %s - %s" % (msg, e))
|
self.error("Could not deserialize: %s - %s" % (msg, e))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue