add error name to exceptions
This commit is contained in:
parent
eed4f89cfe
commit
34ce629429
1 changed files with 3 additions and 3 deletions
6
main.py
6
main.py
|
@ -486,13 +486,13 @@ class GesMag:
|
|||
# vérification pour la quantité
|
||||
try:
|
||||
int(quantite.get()) # conversion en int
|
||||
except: # si la conversion a échoué
|
||||
except ValueError: # si la conversion a échoué
|
||||
ok = False
|
||||
mauvaisChamps.append(quantite)
|
||||
# vérification pour le prix
|
||||
try:
|
||||
float(prix.get()) # conversion en float
|
||||
except: # si la conversion a échoué
|
||||
except ValueError: # si la conversion a échoué
|
||||
ok = False
|
||||
mauvaisChamps.append(prix)
|
||||
|
||||
|
@ -536,7 +536,7 @@ class GesMag:
|
|||
chemin = askopenfile(title="Choisir une image", filetypes=[("Image GIF", ".gif")])
|
||||
image.delete(0, "end")
|
||||
image.insert(0, chemin.name)
|
||||
except:
|
||||
except AttributeError: # si l'utilisateur n'a pas choisit d'image
|
||||
pass
|
||||
|
||||
Button(enfant, image=self.dossierImage, command=___selectionImage).grid(column=1, row=0, sticky='e')
|
||||
|
|
Reference in a new issue