mirror of
https://github.com/postgres/pgweb.git
synced 2025-07-29 11:59:36 +00:00
Fix datatype and encoding for yum spider
This commit is contained in:
@ -80,7 +80,7 @@ if __name__ == "__main__":
|
||||
if pinfo['p'] == familypath and pinfo['f'] == shortdist:
|
||||
if p not in reporpms[v]:
|
||||
reporpms[v][p] = {}
|
||||
reporpms[v][p][arch] = max(ver, reporpms[v][p].get(arch, 0))
|
||||
reporpms[v][p][arch] = max(int(ver), int(reporpms[v][p].get(arch, 0)))
|
||||
platforms[p]['found'] = True
|
||||
break
|
||||
else:
|
||||
|
Reference in New Issue
Block a user