From 0ad41c9c58364c1460f9cd681ef259266fdc0043 Mon Sep 17 00:00:00 2001 From: lovetox <philipp@hoerist.com> Date: Sun, 24 Jul 2022 10:41:04 +0200 Subject: [PATCH] refactor: Remove redundant unicode string prefix This is only needed for python2 compat --- gajim/common/const.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gajim/common/const.py b/gajim/common/const.py index 4e1361145d..1bf6a7aa5d 100644 --- a/gajim/common/const.py +++ b/gajim/common/const.py @@ -465,7 +465,7 @@ class CallType(Enum): CONSONANTS = 'bcdfghjklmnpqrstvwxyz' -THANKS = u"""\ +THANKS = """\ Alexander Futász Alexander V. Butenko Alexey Nezhdanov @@ -511,7 +511,7 @@ class CallType(Enum): Yavor Doganov """.strip().split("\n") -ARTISTS = u"""\ +ARTISTS = """\ Anders Ström Christophe Got Dennis Craven @@ -524,14 +524,14 @@ class CallType(Enum): Jakub Szypulka """.strip().split("\n") -DEVS_CURRENT = u"""\ +DEVS_CURRENT = """\ Yann Leboulanger (asterix AT lagaule.org) Philipp Hörist (philipp AT hoerist.com) Daniel Brötzmann (wurstsalat AT posteo.de) André Apitzsch """.strip().split("\n") -DEVS_PAST = u"""\ +DEVS_PAST = """\ Stefan Bethge (stefan AT lanpartei.de) Alexander Cherniuk (ts33kr AT gmail.com) Stephan Erb (steve-e AT h3c.de) -- GitLab