summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2011-04-07 16:53:52 +0200
committerMartin Kosek <mkosek@redhat.com>2011-04-13 15:58:45 +0200
commit1ac3ed2c271accc0776a3cc34fbe607acf62da17 (patch)
treebf1be818d135e75556e2b6864cb77e663bf9369d /ipalib/backend.py
parentfb329bc8b0dcde54b113fd0cc4b03ab9c11febd0 (diff)
downloadfreeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.tar.gz
freeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.tar.xz
freeipa-1ac3ed2c271accc0776a3cc34fbe607acf62da17.zip
Fix lint false positives.
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 2262e9227..79f190832 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -139,4 +139,4 @@ class Executioner(Backend):
if error is None:
return result
assert isinstance(error, PublicError)
- raise error
+ raise error #pylint: disable=E0702