Revision: 73
Author: Nicolas.Rougier
Date: Thu Aug 2 02:42:01 2012
Log: Fixed a bug in the del_library (reported by Almar Klein)
http://code.google.com/p/freetype-py/source/detail?r=73
Modified:
/trunk/freetype/__init__.py
=======================================
--- /trunk/freetype/__init__.py Tue Jun 26 06:24:11 2012
+++ /trunk/freetype/__init__.py Thu Aug 2 02:42:01 2012
@@ -52,7 +52,7 @@
global __handle__
if __handle__:
try:
- FT_Done_FreeType(byref(self))
+ FT_Done_FreeType(self)
__handle__ = None
except:
pass