Skip to content

Commit

Permalink
#1314: cleanup_printing() before we reset the printing flag! (which w…
Browse files Browse the repository at this point in the history
…ould skip the cleanup)

git-svn-id: https://xpra.org/svn/Xpra/trunk@14104 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 10, 2016
1 parent 18e8b23 commit 8b5caaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/client/client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,9 +451,10 @@ def next_packet(self):


def cleanup(self):
FileTransferHandler.cleanup(self)
reaper_cleanup()
#we must clean printing before FileTransferHandler, which turns the printing flag off!
self.cleanup_printing()
FileTransferHandler.cleanup(self)
p = self._protocol
log("XpraClientBase.cleanup() protocol=%s", p)
if p:
Expand Down

0 comments on commit 8b5caaf

Please sign in to comment.