Explorar el Código

forgot braces

GammaSQ hace 5 años
padre
commit
39c2c7bcd2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      qubesadmin/app.py

+ 1 - 1
qubesadmin/app.py

@@ -217,7 +217,7 @@ class QubesBase(qubesadmin.base.PropertyHolder):
 
         # then search for index
         if type(label) == int or label.isdigit():
-            return self.labels.values[int(label)]
+            return self.labels.values()[int(label)]
 
         raise KeyError(label)