Coverity fix for 137960 Filesystem path, filename, or URI manipulation
Change-Id: Ieaa291ced268216361d865427100fd48bd39ed5a
Signed-off-by: k4.rahul <rahul.k4@tataelxsi.co.in>
# DEBUG WITH PDB
import pdb
+import os
import asyncio
import yaml
import logging
file=sys.stderr,
)
exit(1)
+ config_file = os.path.realpath(os.path.normpath(os.path.abspath(config_file)))
lcm = Lcm(config_file)
asyncio.run(lcm.start())
except (LcmException, getopt.GetoptError) as e: