From 1ac3ed2c271accc0776a3cc34fbe607acf62da17 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 7 Apr 2011 16:53:52 +0200 Subject: Fix lint false positives. --- ipa-client/ipaclient/ipachangeconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipa-client') diff --git a/ipa-client/ipaclient/ipachangeconf.py b/ipa-client/ipaclient/ipachangeconf.py index 957a2901..f6288062 100644 --- a/ipa-client/ipaclient/ipachangeconf.py +++ b/ipa-client/ipaclient/ipachangeconf.py @@ -180,7 +180,7 @@ class IPAChangeConf: value = self.matchComment(line) if value: - return {'name':'comment', 'type':'comment', 'value':value.rstrip()} + return {'name':'comment', 'type':'comment', 'value':value.rstrip()} #pylint: disable=E1103 parts = line.split(self.dassign, 1) if len(parts) < 2: -- cgit