Skip to content

Commit

Permalink
#826: fix ctypes import to make it py3 (py3.4?) compatible
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@9143 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 24, 2015
1 parent c5a849a commit 904ecf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/xpra/platform/win32/window_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

import win32con, win32api #@UnresolvedImport
import ctypes
from ctypes.wintypes import POINT, c_int, c_long
from ctypes import c_int, c_long
from ctypes.wintypes import POINT
from xpra.platform.win32.wndproc_events import WNDPROC_EVENT_NAMES

#use ctypes to ensure we call the "W" version:
Expand Down

0 comments on commit 904ecf9

Please sign in to comment.