[snmpd]: Fix typo in is_platform_arista (#1634)

This commit is contained in:
yurypm 2018-04-23 16:52:21 +01:00 committed by Guohan Lu
parent de3e8cc563
commit 0a70626c65

View File

@ -238,7 +238,7 @@ def is_platform_arista():
if proc.returncode != 0: if proc.returncode != 0:
log_error("Failed to retrieve platform string") log_error("Failed to retrieve platform string")
return false return False
return "arista" in stdout return "arista" in stdout