Skip to content
Snippets Groups Projects
Commit 12b1c3aa authored by Sri Krishna Madireddy's avatar Sri Krishna Madireddy
Browse files

LRDPv2: BUg fix for parsing in dcc_parser.py

Bug fix for config offset input param type

Change-Id: Iacfd39ea8a39dc7f88dd89d5b9cd1da4afd921da
parent 76e41afd
No related branches found
No related tags found
No related merge requests found
...@@ -226,7 +226,7 @@ if __name__ == '__main__': ...@@ -226,7 +226,7 @@ if __name__ == '__main__':
help='chip version') help='chip version')
parser.add_option('--v2', dest='version', action="store_const", const='2', parser.add_option('--v2', dest='version', action="store_const", const='2',
help='DCC driver version 2') help='DCC driver version 2')
parser.add_option('--config-offset', dest='config_offset', type=int, parser.add_option('--config-offset', dest='config_offset',
help='Start offset for DCC configuration') help='Start offset for DCC configuration')
(options, args) = parser.parse_args() (options, args) = parser.parse_args()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment