Skip to content

Commit 723d19f

Browse files
authored
Merge pull request MagnoEfren#4 from MagnoEfren/revert-3-fixed-button-bug
Revert "Se corrige un bug con el boton "Iniciar Sesion""
2 parents 78db359 + 8c77cd8 commit 723d19f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Login/login.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
import conexion
1010

1111
class Login(Frame):
12-
executing = False
13-
1412
def __init__(self, master, *args):
1513
super().__init__( master,*args)
1614
self.user_marcar = "Ingrese su correo"
@@ -67,9 +65,6 @@ def verificacion_users(self):
6765
password_entry = self.entry2.get()
6866

6967
if users_entry!= self.user_marcar or self.contra_marcar != password_entry:
70-
if self.executing:
71-
return None
72-
7368
users_entry = str("'" + users_entry + "'")
7469
password_entry = str("'" + password_entry + "'")
7570

@@ -96,7 +91,6 @@ def verificacion_users(self):
9691
dato2 = dato2[0][2]
9792

9893
if dato1 != [] and dato2 != []:
99-
self.executing = True
10094
self.acceder_ventana_dos()
10195
else:
10296
self.indica1['text'] = 'Usuario incorrecto'

0 commit comments

Comments
 (0)