aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_ld_sects.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/gen_ld_sects.py b/scripts/gen_ld_sects.py
index f8c897d6..43e812b5 100755
--- a/scripts/gen_ld_sects.py
+++ b/scripts/gen_ld_sects.py
@@ -9,8 +9,8 @@ import re
def usage():
- print "Usage: {0} <section reg exp match> [<skip section>...]".format(
- sys.argv[0])
+ print("Usage: {0} <section reg exp match> [<skip section>...]".format(
+ sys.argv[0]))
sys.exit(1)
@@ -57,7 +57,7 @@ def main():
if sect_name in skip_sections:
continue
- print '\t*({0})'.format(sect_name)
+ print('\t*({0})'.format(sect_name))
if __name__ == "__main__":