From 1ad85fd9b899f3cfcd480c55cebfe67f559ce4ff Mon Sep 17 00:00:00 2001 From: patrick-g2 Date: Tue, 11 Oct 2022 17:30:55 +0200 Subject: [PATCH] Add missing double quotes in __credits__ list of unhideGui.py --- NEWS | 7 +++++++ unhideGui.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index d87944f..2b10f64 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +Changes since v20220611 : +*********************** + +BUG FIXES + - Add missing missing double quotes in __credit__ list of unhideGui.py (reported by Afzal sulaiman) + + Changes since 20210124 : ********************** diff --git a/unhideGui.py b/unhideGui.py index 8abb56d..6965e91 100755 --- a/unhideGui.py +++ b/unhideGui.py @@ -19,9 +19,9 @@ """ __author__ = "Patrick Gouin" __copyright__ = "Copyright 2020-2022, Patrick Gouin" -__credits__ = [daichifukui] +__credits__ = ["daichifukui", "Afzal sulaiman"] __license__ = "GPL V3" -__version__ = "1.1" +__version__ = "1.2" __maintainer__ = "Patrick Gouin" __email__ = "patrickg.github@free.fr" __status__ = "Production"