瀏覽代碼

python: fix python3 problem

tags/v0.99.beta20
Alex Foulon 9 年之前
父節點
當前提交
551ad91775
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      python/caca/canvas.py

+ 4
- 1
python/caca/canvas.py 查看文件

@@ -47,7 +47,10 @@ class _Canvas(object):
_lib.caca_free_canvas.argtypes = [_Canvas]
_lib.caca_free_canvas.restype = ctypes.c_int

return _lib.caca_free_canvas(self)
if self is not None:
return _lib.caca_free_canvas(self)

return None

class Canvas(_Canvas):
""" Canvas object, methods are libcaca functions with canvas_t as


Loading…
取消
儲存