pep8: deprecation

pull/4420/head
Michael DeHaan 2013-06-30 18:51:47 -04:00
parent 899ea4de82
commit 4827d1451e
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ class AristaL2Interface(object):
"""
(rc, out, err) = self.run_command("netdev l2interface list")
collection = json.loads(out)
return collection.get('result').has_key(self.interface_id)
return self.interface_id in collection.get('result')
def main():