Quellcode durchsuchen

otp.py: fix return code mistype (#784)

Co-authored-by: あく <alleteam@gmail.com>
Lesha Lomalkin vor 4 Jahren
Ursprung
Commit
d9d33a0213
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      scripts/otp.py

+ 2 - 2
scripts/otp.py

@@ -170,9 +170,9 @@ class Main(App):
             os.remove(filename)
             os.remove(filename)
         except Exception as e:
         except Exception as e:
             self.logger.exception(e)
             self.logger.exception(e)
-            return 0
+            return 1
 
 
-        return 1
+        return 0
 
 
     def flash_second(self):
     def flash_second(self):
         self.logger.info(f"Flashing second block of OTP")
         self.logger.info(f"Flashing second block of OTP")