Comment 1 for bug 341916

Revision history for this message
Cristian Salamea (ovnicraft) wrote :

line 217

if rev.isdigit() , that is the error rev is int value and not has that atribute, i changed to

if type(rev)==int: solve the problem