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