correction syntaxique
This commit is contained in:
parent
c98730cef0
commit
e129a0643c
@ -75,7 +75,7 @@ fenetre = Tk()
|
||||
fenetre.title("recherche de chaine")
|
||||
value = StringVar()
|
||||
|
||||
if(len(sys.argv)>1):
|
||||
if len(sys.argv) > 1:
|
||||
arg = True
|
||||
else:
|
||||
value.set("")
|
||||
@ -99,7 +99,7 @@ label2.pack()
|
||||
bouton_update_base.pack()
|
||||
fenetre.bind("<Key-Return>", enter)
|
||||
fenetre.bind("<Key-Escape>", eventreset)
|
||||
if (arg==True):
|
||||
if arg == True:
|
||||
for i in sys.argv[1:]:
|
||||
value.set(i)
|
||||
click()
|
||||
|
Loading…
Reference in New Issue
Block a user