From 0d923051e4851cb834a9985b9c001be6a9a6f0b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 22 Nov 2010 18:33:46 +0000 Subject: [PATCH] Fix typo. --- opengl32.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opengl32.py b/opengl32.py index d3fd670..f3e2f0e 100644 --- a/opengl32.py +++ b/opengl32.py @@ -161,8 +161,8 @@ opengl32.functions += [ class WglGetProcAddressFunction(DllFunction): - def __init__(self, type, name, args **kwargs): - DllFunction.__init__(self, type, name, args **kwargs) + def __init__(self, type, name, args, **kwargs): + DllFunction.__init__(self, type, name, args, **kwargs) self.functions = [] def wrap_decl(self): -- 2.45.2