Skip to content

Commit

Permalink
Futurize using stage 1
Browse files Browse the repository at this point in the history
  • Loading branch information
nraval1729 committed Oct 10, 2019
1 parent 59b767c commit 9a05d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rbox_htmldiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def textDiff(a, b, ins_attrs=None, del_attrs=None):
elif e[0] == "equal":
out.append(''.join(b[e[3]:e[4]]))
else:
raise "Um, something's broken. I didn't expect a '" + `e[0]` + "'."
raise "Um, something's broken. I didn't expect a '" + repr(e[0]) + "'."
return ''.join(out)

def html2list(x, b=0):
Expand Down

0 comments on commit 9a05d23

Please sign in to comment.