Artifacts Associated With Ticket 49e93ad8566eac50
Ticket change [9b1a07600f] (rid 11592) by anonymous on 2020-08-31 06:50:18:
- foundin initialized to: "1.12"
- icomment:
Lors de l'exécution de la version 1.12 CLI, j'ai le message d'erreur suivant: # No module <graphspell.lexgraph_fr.py> Le reste semble fonctionner, mais ce message perturbe le plugin vim. J'ai situé le problème dans le fichier grammalecte/graphspell/ibdawg.py En m'inspirant de la façon dont le module est importé dans grammalecte/graphspell/spellchecker.py je propose la modification suivante: ``` --- a/ibdawg.py 2020-08-31 08:46:46.034610630 +0200 +++ b/ibdawg.py 2020-08-31 08:46:49.846604968 +0200 @@ -157,7 +157,7 @@ # lexicographer module ? self.lexicographer = None try: - self.lexicographer = importlib.import_module("graphspell.lexgraph_"+self.sLangCode) + self.lexicographer = importlib.import_module(".lexgraph_"+self.sLangCode, "grammalecte.graphspell") except ImportError: print("# No module <graphspell.lexgraph_"+self.sLangCode+".py>") ```
- login: "anonymous"
- mimetype: "text/x-fossil-plain"
- private_contact initialized to: "e42271df37d838c9c781bbb88491d7db66a32d6e"
- severity initialized to: "Important"
- status initialized to: "Open"
- title initialized to:
Message d'erreur à l'utilisation de la version v1.12 cli
- type initialized to: "Code_Defect"
Ticket change [92b9ba0370] (rid 11597) by olr on 2020-08-31 10:46:40:
- icomment:
Oui, en effet. Bug passé inaperçu chez moi, parce que ce chemin est aussi valide sur mon disque dur. C’est corrigé. Merci pour le signalement. Je vais vite publier une version corrective.
- login: "olr"
- mimetype: "text/x-fossil-plain"
- priority changed to: "Immediate"
- resolution changed to: "Fixed"
- status changed to: "Closed"
- subsystem changed to: "Graphspell"
- icomment: