1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-24 13:56:13 +01:00

OscConfigParser.py: silence pylint false positive E0702

Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
This commit is contained in:
Danny Al-Gaaf 2013-05-27 15:20:56 +02:00
parent a3cf8e8552
commit 96183f41f3

View File

@ -306,7 +306,7 @@ class OscConfigParser(configparser.SafeConfigParser):
e.append(lineno, repr(line)) e.append(lineno, repr(line))
# if any parsing errors occurred, raise an exception # if any parsing errors occurred, raise an exception
if e: if e:
raise e raise e # pylint: disable-msg=E0702
def write(self, fp, comments = False): def write(self, fp, comments = False):
""" """