mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Removed redundant parenthesis
This commit is contained in:
parent
802235d003
commit
11c11179c7
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ class CloudTest(ShellCase):
|
|||
for q in query:
|
||||
# Verify but this is a new name and not a shutting down ec2 instance
|
||||
if q.startswith(self.instance_name) and not (q == self.instance_name) \
|
||||
and not (q.split('-')[-1].startswith('DEL')):
|
||||
and not q.split('-')[-1].startswith('DEL'):
|
||||
return q
|
||||
|
||||
def _ensure_deletion(self, instance_name=None):
|
||||
|
|
Loading…
Add table
Reference in a new issue