Procházet zdrojové kódy

qvm-template: test != 1 instead of == 0 for template-dummy feature

WillyPillow před 3 roky
rodič
revize
60f5ba0e23
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      qubesadmin/tools/qvm_template.py

+ 1 - 1
qubesadmin/tools/qvm_template.py

@@ -1376,7 +1376,7 @@ def remove(
         cnt = 1
         while dummy in app.domains \
                 and app.domains[dummy].features.get(
-                    'template-dummy', '0') == '0':
+                    'template-dummy', '0') != '1':
             dummy = '%s-%d' % (orig_dummy, cnt)
             cnt += 1
         if dummy not in app.domains: