mirror of
https://github.com/RPCSX/xed.git
synced 2025-02-20 03:11:20 +00:00
chipmodel: xrange() -> range()
Change-Id: I6caeb5f75ef63ee096f2f9e668389c9794d064ef (cherry picked from commit 322c20fb02d0dd3a531453220ec64b78b84066ec)
This commit is contained in:
parent
0e3904c7e9
commit
c40152ab7f
@ -134,7 +134,7 @@ def read_database(filename):
|
||||
|
||||
def _format_names(lst):
|
||||
cols = 4
|
||||
lines = ('\t'.join(lst[i:i+cols]) for i in xrange(0,len(lst),cols))
|
||||
lines = ('\t'.join(lst[i:i+cols]) for i in range(0,len(lst),cols))
|
||||
return '\n\t'.join(lines)
|
||||
|
||||
def dump_chip_hierarchy(arg, chips, chip_features_dict):
|
||||
|
Loading…
x
Reference in New Issue
Block a user