diff options
author | Jan Cholasta <jcholast@redhat.com> | 2011-04-07 16:53:52 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-04-13 15:58:45 +0200 |
commit | 1ac3ed2c271accc0776a3cc34fbe607acf62da17 (patch) | |
tree | bf1be818d135e75556e2b6864cb77e663bf9369d /ipa-client/ipaclient | |
parent | fb329bc8b0dcde54b113fd0cc4b03ab9c11febd0 (diff) | |
download | freeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.tar.gz freeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.tar.xz freeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.zip |
Fix lint false positives.
Diffstat (limited to 'ipa-client/ipaclient')
-rw-r--r-- | ipa-client/ipaclient/ipachangeconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-client/ipaclient/ipachangeconf.py b/ipa-client/ipaclient/ipachangeconf.py index 957a29015..f6288062b 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: |