Browse Source

forgot braces

GammaSQ 5 năm trước cách đây
mục cha
commit
39c2c7bcd2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)