summaryrefslogtreecommitdiffstats
path: root/openstack/common
diff options
context:
space:
mode:
authorZhongyue Luo <zhongyue.nah@intel.com>2013-01-31 14:24:29 +0800
committerZhongyue Luo <zhongyue.nah@intel.com>2013-01-31 15:00:02 +0800
commitea46d462fcfd7d393b71b14206a5e6d86bf1994b (patch)
treee6d2b6b510ae059a53df36c8dff667a435eb95eb /openstack/common
parentc29263c4a81d2e71a3d6e36eb32e5df9d2c8fb05 (diff)
downloadoslo-ea46d462fcfd7d393b71b14206a5e6d86bf1994b.tar.gz
oslo-ea46d462fcfd7d393b71b14206a5e6d86bf1994b.tar.xz
oslo-ea46d462fcfd7d393b71b14206a5e6d86bf1994b.zip
Fixes 'not in' operator usage
Change-Id: Ibac9853fc72e2452fa5e2b3a493bd03523faabfb
Diffstat (limited to 'openstack/common')
-rw-r--r--openstack/common/rpc/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/common.py b/openstack/common/rpc/common.py
index 8af2f03..357ee9d 100644
--- a/openstack/common/rpc/common.py
+++ b/openstack/common/rpc/common.py
@@ -289,7 +289,7 @@ def deserialize_remote_exception(conf, data):
# NOTE(ameade): We DO NOT want to allow just any module to be imported, in
# order to prevent arbitrary code execution.
- if not module in conf.allowed_rpc_exception_modules:
+ if module not in conf.allowed_rpc_exception_modules:
return RemoteError(name, failure.get('message'), trace)
try: