Explorar o código

Making OSError more verbose in labkeyInterface

Andrej hai 4 meses
pai
achega
a576a3bb48
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      labkeyInterface.py

+ 1 - 1
labkeyInterface.py

@@ -11,7 +11,7 @@ class labkeyInterface:
         try:
             f=open(fname)
         except OSError as e:
-            print("Confgiuration error: OS error({}): {}".format(e.errno, e.strerror))
+            print("Configuration error: OS error({}): {} {}".format(e.errno,fname, e.strerror))
             raise
 
         self.connectionConfig=json.load(f)