]> git.proxmox.com Git - qemu.git/blobdiff - scripts/tracetool.py
trace: [tracetool] Explicitly identify public backends
[qemu.git] / scripts / tracetool.py
index c003cf69eded3df2beadf7e9b44eb51627bee185..a79ec0f0962fc1e2e8bb89737bec556d69ab3cbb 100755 (executable)
@@ -90,8 +90,8 @@ def main(args):
             arg_format = arg
 
         elif opt == "--list-backends":
-            backends = tracetool.backend.get_list()
-            out(", ".join([ b for b,_ in backends ]))
+            public_backends = tracetool.backend.get_list(only_public = True)
+            out(", ".join([ b for b,_ in public_backends ]))
             sys.exit(0)
         elif opt == "--check-backend":
             check_backend = True