Quellcode durchsuchen

* Fix bad condition.

tags/v0.99.beta18
Alex Foulon alxf vor 14 Jahren
Ursprung
Commit
c8031ca2a7
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      python/caca/canvas.py

+ 1
- 1
python/caca/canvas.py Datei anzeigen

@@ -65,7 +65,7 @@ class Canvas(_Canvas):
"""
_lib.caca_create_canvas.argtypes = [ctypes.c_int, ctypes.c_int]

if pointer is not None:
if pointer is None:
self._cv = _lib.caca_create_canvas(width, height)
if self._cv == 0:
raise CanvasError, "Failed to create canvas"


Laden…
Abbrechen
Speichern