Skip to content

Commit

Permalink
fix more pylint warnings
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@21853 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 24, 2019
1 parent 9c95199 commit ddcef7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xpra/clipboard/translated_clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os

from xpra.clipboard.gdk_clipboard import GDKClipboardProtocolHelper
from xpra.clipboard.clipboard_base import ClipboardProtocolHelperBase, log
from xpra.clipboard.clipboard_base import log


DEFAULT_LOCAL_SELECTION = os.environ.get("XPRA_TRANSLATEDCLIPBOARD_LOCAL_SELECTION")
Expand Down Expand Up @@ -42,7 +42,7 @@ def getselection(name):
kwargs["clipboards.local"] = [self.local_clipboard]
#this one can be changed (we send a packet to change the enabled selections)
kwargs["clipboards.remote"] = [self.remote_clipboard]
ClipboardProtocolHelperBase.__init__(self, *args, **kwargs)
GDKClipboardProtocolHelper.__init__(self, *args, **kwargs)

def __repr__(self):
return "TranslatedClipboardProtocolHelper"
Expand Down

0 comments on commit ddcef7d

Please sign in to comment.