Grammalecte  History Of Ticket 49e93ad8566eac50

Artifacts Associated With Ticket 49e93ad8566eac50

  1. Ticket change [9b1a07600f] (rid 11592) by anonymous on 2020-08-31 06:50:18:

    1. foundin initialized to: "1.12"
    2. 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>")
      ```
      
    3. login: "anonymous"
    4. mimetype: "text/x-fossil-plain"
    5. private_contact initialized to: "e42271df37d838c9c781bbb88491d7db66a32d6e"
    6. severity initialized to: "Important"
    7. status initialized to: "Open"
    8. title initialized to:
      Message d'erreur à l'utilisation de la version v1.12 cli
      
    9. type initialized to: "Code_Defect"
  2. Ticket change [92b9ba0370] (rid 11597) by olr on 2020-08-31 10:46:40:

    1. 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.
      
    2. login: "olr"
    3. mimetype: "text/x-fossil-plain"
    4. priority changed to: "Immediate"
    5. resolution changed to: "Fixed"
    6. status changed to: "Closed"
    7. subsystem changed to: "Graphspell"