[201911][Juniper QFX5210] Fix Python errors (#4413)

This commit is contained in:
Joe LeVeque 2020-04-11 16:42:56 -07:00 committed by GitHub
parent 4f1b9ff6f3
commit d09fba379f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -468,7 +468,7 @@ class device_monitor(object):
masterLED_file = open(MASTER_LED_PATH, 'r+') masterLED_file = open(MASTER_LED_PATH, 'r+')
except IOError as e: except IOError as e:
print "Error: unable to open file: %s" % str(e) print "Error: unable to open file: %s" % str(e)
return False return
masterLED_file.write(str(master_led_value)) masterLED_file.write(str(master_led_value))
masterLED_file.close() masterLED_file.close()
@ -477,10 +477,9 @@ class device_monitor(object):
systemLED_file = open(SYSTEM_LED_PATH, 'r+') systemLED_file = open(SYSTEM_LED_PATH, 'r+')
except IOError as e: except IOError as e:
print "Error: unable to open file: %s" % str(e) print "Error: unable to open file: %s" % str(e)
return False return
systemLED_file.write(str(system_led_value)) systemLED_file.write(str(system_led_value))
systemLED_file.close() systemLED_file.close()
pass
def manage_device(self): def manage_device(self):
thermal = QFX5210_ThermalUtil() thermal = QFX5210_ThermalUtil()