Comment 12 for bug 341916

Revision history for this message
Tim Black (tim-alwaysreformed) wrote :

A previous revision contains these differences:

221c213
< if rev.isdigit():
---
> if str(rev).isdigit():
236c228
< if rev_rev.isdigit():
---
> if str(rev_rev).isdigit():
244c236
< if not segment.isdigit():
---
> if not str(segment).isdigit():

Those differences fixed this problem for me.