Changes in tests/pybin/settings.py [d82892a:a45fc7b]
- File:
-
- 1 edited
-
tests/pybin/settings.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
rd82892a ra45fc7b 22 22 'x86-64' : 'x64', 23 23 'x86_64' : 'x64', 24 'aarch64' : 'x64',25 24 'x86' : 'x86', 26 25 'i386' : 'x86', … … 41 40 canonical_host = Architecture.make_canonical( config.HOSTARCH ) 42 41 except KeyError: 43 print("Unk nown host architecture %s" % config.HOSTARCH, file=sys.stderr)42 print("Unkown host architecture %s" % config.HOSTARCH, file=sys.stderr) 44 43 sys.exit(1) 45 44 … … 48 47 arch = Architecture.make_canonical( arch ) 49 48 except KeyError: 50 print("Unk nown architecture %s" % arch, file=sys.stderr)49 print("Unkown architecture %s" % arch, file=sys.stderr) 51 50 sys.exit(1) 52 51
Note:
See TracChangeset
for help on using the changeset viewer.