Skip to content

Commit

Permalink
anonymous functions can't use super()
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@24259 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 25, 2019
1 parent 6d36dab commit 1bd89b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/server/window/window_video_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ def send_nonvideo(regions=regions, encoding=coding, exclude_region=None, get_bes
if self.b_frame_flush_timer and exclude_region is None:
#a b-frame is already due, don't clobber it!
exclude_region = vr
super().do_send_delayed_regions(damage_time, regions, encoding, options, exclude_region=exclude_region, get_best_encoding=get_best_encoding)
WindowSource.do_send_delayed_regions(self, damage_time, regions, encoding, options, exclude_region=exclude_region, get_best_encoding=get_best_encoding)

if self.is_tray:
sublog("BUG? video for tray - don't use video region!")
Expand Down

0 comments on commit 1bd89b1

Please sign in to comment.