3liz / QgisCadastrePlugin

A QGIS plugin which helps users to import the french land registry ('cadastre') data into a database. It is meant to ease the use of the data in QGIS by providing search tools and appropriate layer symbology.
GNU General Public License v2.0
61 stars 41 forks source link

no git tag exception #375

Closed MaelREBOUX closed 2 years ago

MaelREBOUX commented 2 years ago

Fix #374

MaelREBOUX commented 2 years ago

Testé et validé. Malgré le test Flake8 mais je vois pas où ça coincerait et l'erreur ne semble pas venir du bout de code rajouté ?

Gustry commented 2 years ago

En effet, la vérification flake8 plante pour une autre raison que ce PR.

Ceci dit, en temps normal, flake8 aurait du planter sur ce PR. Flake8 interdit l'utilisation des "try...except" sans spécification de l'exception.

Un fix plus précis :

    try:
      return 'next {}'.format(next_git_tag())
    except IndexError:
      return "[no git tag]"

Juste pour information Je vais corriger, car flake8 va râler quand il sera de nouveau opérationnel.