Commit 82cd32264fe0997038fc29adfa62550a56076d87

Authored by Geoffrey PREUD'HOMME
1 parent 337c46b3

Suppression du debug dans custom.py.example

Showing 1 changed file with 0 additions and 2 deletions   Show diff stats
custom.py.example
1 1 #!/usr/bin/env python3
2 2  
3 3 def filterEvent(event):
4   - print(event)
5 4 # Enlève le Renforcement TOEIC
6 5 if event.shortName == 'Renf.TOEIC':
7 6 event.active = False
8 7 # Remplace LV2 par allemand
9 8 elif event.shortName == 'LV2':
10 9 event.shortName = 'All'
11   - print(event.longName)
12 10 event.longName = event.longName.replace('LV2', 'Allemand')
13 11  
... ...