Skip to content

Commit

Permalink
Update bb.py
Browse files Browse the repository at this point in the history
Je penses que c'est suite à une modification de traduction, ça fait planter le script à la récupération des statistiques
Cette modification permet de palier à l'erreur : Roromis#77
  • Loading branch information
kepon85 authored Aug 18, 2022
1 parent 56fdd73 commit 39a962c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lalf/bb.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _export_(self):
stats[e("td span").eq(2).text()] = e("td span").eq(3).text()

self.total_posts = int(stats["Messages"])
self.total_topics = int(stats["Nombre de sujets ouvert dans le forum"])
self.total_topics = int(stats["Nombre de sujets ouverts dans le forum"])
self.total_users = int(stats["Nombre d'utilisateurs"])

self.startdate = parse_date(stats["Ouverture du forum"])
Expand Down

0 comments on commit 39a962c

Please sign in to comment.