Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compare.py - AttributeError: 'float' object has no attribute 'encode', line 310 in dumpResult #49

Closed
miraculixdruid opened this issue Jul 12, 2016 · 0 comments
Assignees
Labels
Milestone

Comments

@miraculixdruid
Copy link

See proposed fix below

Old implementation:
print("old: " + str(res._changes[0].encode('ascii','replace')) + " new: " + str(res._changes[1].encode('ascii','replace')))

New implementation:
print("old: " + str(res._changes[0]).encode('ascii','replace') + " new: " + str(res._changes[1]).encode('ascii','replace'))

@ebroecker ebroecker added the bug label Jul 12, 2016
@ebroecker ebroecker self-assigned this Jul 12, 2016
ebroecker added a commit that referenced this issue Jul 15, 2016
thanks to miraculixdruid
@ebroecker ebroecker added this to the 0.5 milestone Aug 10, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants