From 8fd2aa80ab7609cc16e5922149c8ec453153c7c8 Mon Sep 17 00:00:00 2001 From: Matthew Crymble Date: Tue, 30 Nov 2021 14:50:14 -0600 Subject: fpga: usrp2: update build tools to use python3 --- fpga/usrp2/top/extract_usage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fpga/usrp2/top/extract_usage.py') diff --git a/fpga/usrp2/top/extract_usage.py b/fpga/usrp2/top/extract_usage.py index 6e6fac206..ebd5827b6 100755 --- a/fpga/usrp2/top/extract_usage.py +++ b/fpga/usrp2/top/extract_usage.py @@ -40,7 +40,7 @@ def extract_maps(): for line in ALL_MAP_FILES.splitlines(): path, name = line.split() if not os.path.exists(path): - print 'DNE ', path, ' skipping...' + print('DNE {} skipping...'.format(path)) output += """ @@ -54,5 +54,5 @@ def extract_maps(): if __name__ == '__main__': summary = extract_maps() - if len(sys.argv) == 1: print summary + if len(sys.argv) == 1: print(summary) else: open(sys.argv[1], 'w').write(summary) -- cgit v1.2.3