Skip to content

Commit

Permalink
#1199: the csc module has not width or height attributes, so logging …
Browse files Browse the repository at this point in the history
…it could cause errors

git-svn-id: https://xpra.org/svn/Xpra/trunk@12596 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 18, 2016
1 parent f12b21c commit 8ee3e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/codecs/csc_libyuv/colorspace_converter.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ cdef class ColorspaceConverter:
def __repr__(self):
if not self.src_format or not self.dst_format:
return "libyuv(uninitialized)"
return "libyuv(%s %sx%s %s)" % (self.src_format, self.width, self.height, self.dst_format)
return "libyuv(%s %sx%s %s)" % (self.src_format, self.src_width, self.src_height, self.dst_format)

def __dealloc__(self): #@DuplicatedSignature
self.clean()
Expand Down

0 comments on commit 8ee3e78

Please sign in to comment.