pylint: fix unneeded-not

Reviewed-By: Tomas Krizek <tkrizek@redhat.com>
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
Jan Barta
2016-09-22 16:52:57 +02:00
committed by Martin Basti
parent 36484e8672
commit 275e85d076
11 changed files with 14 additions and 15 deletions
+1 -1
View File
@@ -183,7 +183,7 @@ class UI_driver(object):
options.binary_location = paths.CHROMIUM_BROWSER
if driver_type == 'remote':
if not 'host' in self.config:
if 'host' not in self.config:
raise nose.SkipTest('Selenium server host not configured')
host = self.config["host"]