Skip to content

Commit

Permalink
Merge b86fc83 into b3d8837
Browse files Browse the repository at this point in the history
  • Loading branch information
ralic committed May 21, 2017
2 parents b3d8837 + b86fc83 commit 0addc96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grapefruit.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""GrapeFruit - Color manipulation in Python"""

from __future__ import division


import sys

Expand Down Expand Up @@ -1492,7 +1492,7 @@ def __unicode__(self):
The RGBA representation of this grapefruit.Color instance.
"""
return unicode("({}, {}, {}, {})".format(*[round(v, 6) for v in (self.__rgb + (self.__a,))]))
return str("({}, {}, {}, {})".format(*[round(v, 6) for v in (self.__rgb + (self.__a,))]))

def __iter__(self):
return iter(self.__rgb + (self.__a,))
Expand Down

0 comments on commit 0addc96

Please sign in to comment.