Revert mistaken change to parser config

This commit is contained in:
Andrew Pattison
2019-11-22 10:30:08 +00:00
parent fc6405cfab
commit 7d77dc224e

View File

@@ -113,7 +113,7 @@ combination of the original EEPROM image file, along with the new bootloader \
configuration.') configuration.')
parser.add_argument('--config', help='Filename of new bootloader config') parser.add_argument('--config', help='Filename of new bootloader config')
parser.add_argument('--out', help='Name of output file') parser.add_argument('--out', help='Name of output file')
parser.add_argument('EEPROM', help='EEPROM filename (pieeprom.bin)') parser.add_argument('eeprom', help='EEPROM filename (pieeprom.bin)')
args = parser.parse_args() args = parser.parse_args()
image = BootloaderImage(args.eeprom, args.out) image = BootloaderImage(args.eeprom, args.out)