Skip to content

Commit

Permalink
Fix(rdbi): Correct session
Browse files Browse the repository at this point in the history
  • Loading branch information
fkglr committed Jan 10, 2024
1 parent 88d222c commit f19d254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gallia/commands/primitive/uds/rdbi.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def configure_parser(self) -> None:
async def main(self, args: Namespace) -> None:
try:
if args.session != 0x01:
await self.ecu.set_session(args.data_identifier)
await self.ecu.set_session(args.session)
except Exception as e:
logger.critical(f"fatal error: {e!r}")
sys.exit(1)
Expand Down

0 comments on commit f19d254

Please sign in to comment.