Fix bug in device selection of rnodeconf

This commit is contained in:
Dionysis Grigoropoulos 2023-06-21 00:02:11 +03:00
parent 7fdb431d70
commit 743736b376
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -1494,7 +1494,7 @@ def main():
selected_product = None
try:
c_dev = int(input())
if c_dev < 1 or c_dev > 6:
if c_dev < 1 or c_dev > 7:
raise ValueError()
elif c_dev == 1:
selected_product = ROM.PRODUCT_RNODE