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