From 16ae4a64b682056a1f92c5641e84cf7f3700ee64 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Ouellet Date: Thu, 30 Nov 2017 06:48:03 -0500 Subject: [PATCH] Disable spinner if --raw-data --- qubesadmin/tools/qvm_ls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubesadmin/tools/qvm_ls.py b/qubesadmin/tools/qvm_ls.py index 3c69ffc..3d9cde4 100644 --- a/qubesadmin/tools/qvm_ls.py +++ b/qubesadmin/tools/qvm_ls.py @@ -571,7 +571,7 @@ def main(args=None, app=None): if col.upper() not in Column.columns: PropertyColumn(col.lower()) - if args.spinner: + if args.spinner and not args.raw_data: # we need Enterprise Edition™, since it's the only one that detects TTY # and uses dots if we are redirected somewhere else spinner = qubesadmin.spinner.QubesSpinnerEnterpriseEdition(sys.stderr)