Bugfix
This commit is contained in:
parent
e76df17735
commit
1aee3e0efd
2 changed files with 2 additions and 2 deletions
atlasimagecomposer
|
@ -23,7 +23,7 @@ def run():
|
|||
servantid = input("Enter servant ID: ")
|
||||
try:
|
||||
t = int(servantid)
|
||||
if t > 0:
|
||||
if t <= 0:
|
||||
raise ValueError
|
||||
except ValueError:
|
||||
print("Servant ID has to be a valid integer above 0")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue