Hello.
During preparing Debian package one of the tools (lintian)
pointed spelling mistake in PyOpenCL binaries.
See attached patch.

Best regards

-- 
Tomasz Rybak <[email protected]> GPG/PGP key ID: 2AD5 9860
Fingerprint A481 824E 7DD3 9C0E C40A  488E C654 FB33 2AD5 9860
http://member.acm.org/~tomaszrybak
diff --git a/distribute_setup.py b/distribute_setup.py
index bbb6f3c..f5ed1bf 100644
--- a/distribute_setup.py
+++ b/distribute_setup.py
@@ -256,7 +256,7 @@ def _rename_path(path):
 
 def _remove_flat_installation(placeholder):
     if not os.path.isdir(placeholder):
-        log.warn('Unkown installation at %s', placeholder)
+        log.warn('Unknown installation at %s', placeholder)
         return False
     found = False
     for file in os.listdir(placeholder):
diff --git a/src/wrapper/wrap_cl.hpp b/src/wrapper/wrap_cl.hpp
index 041aa54..63cdf90 100644
--- a/src/wrapper/wrap_cl.hpp
+++ b/src/wrapper/wrap_cl.hpp
@@ -689,7 +689,7 @@ namespace pyopencl
 
                   default:
                     throw error("Context.get_info", CL_INVALID_VALUE,
-                        "unkown context_property key encountered");
+                        "unknown context_property key encountered");
                 }
 
                 py_result.append(py::make_tuple(result[i], value));

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
PyOpenCL mailing list
[email protected]
http://lists.tiker.net/listinfo/pyopencl

Reply via email to