diff options
Diffstat (limited to 'gnuradio-runtime/examples/mp-sched/plot_flops.py')
-rwxr-xr-x | gnuradio-runtime/examples/mp-sched/plot_flops.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/examples/mp-sched/plot_flops.py b/gnuradio-runtime/examples/mp-sched/plot_flops.py index c80820b8a3..9bd2ff12bb 100755 --- a/gnuradio-runtime/examples/mp-sched/plot_flops.py +++ b/gnuradio-runtime/examples/mp-sched/plot_flops.py @@ -85,10 +85,10 @@ def handle_file(input_filename): def main(): parser = ArgumentParser() - parser.add_argument('file', help='Input file', nargs=1) + parser.add_argument('file', help='Input file') args = parser.parse_args() - handle_file(args.file[0]) + handle_file(args.file) if __name__ == '__main__': |