Skip to content

Commit

Permalink
[device/accton] Fix Python error for as7116-54x (#4391)
Browse files Browse the repository at this point in the history
Fix syntax error
  • Loading branch information
jleveque authored and abdosi committed Apr 11, 2020
1 parent a97b73e commit 2772cce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@ def get_presence(self):
presence = int(sfp_presence.read(), 16)
except IOError:
return False
logger.log_info("debug:port_ %s sfp presence is %s" % (str(self.index)), % (str(presence))
logger.log_info("debug:port_ %s sfp presence is %s" % (str(self.index), str(presence)))
return presence

def get_model(self):
Expand Down

0 comments on commit 2772cce

Please sign in to comment.