From 9bcd232454da36438de90e1a9889d6ce8a4702c5 Mon Sep 17 00:00:00 2001 From: Olli-Pekka Heinisuo Date: Wed, 18 May 2016 22:49:34 +0300 Subject: [PATCH] Fix syntax [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f21f736..d088840 100644 --- a/README.md +++ b/README.md @@ -34,4 +34,4 @@ The project is structured like a normal Python package with a standard ``setup.p Currently the ``setup.py`` file parses OpenCV version information from the OpenCV sources. OpenCV depends on numpy, so setup.py checks the numpy version also with the help of pip. -As described earlier, the ```.pyd`` file is normally copied to site-packages. I don't want to pollute the root folder, so the ```__init__.py`` file in cv2 folder handles the import logic correctly by importing the actual ```.pyd`` module and replacing the imported cv2 package in ``sys.modudes`` with the ```.pyd`` module. \ No newline at end of file +As described earlier, the ``.pyd`` file is normally copied to site-packages. I don't want to pollute the root folder, so the ``__init__.py`` file in cv2 folder handles the import logic correctly by importing the actual ``.pyd`` module and replacing the imported cv2 package in ``sys.modudes`` with the ``.pyd`` module. \ No newline at end of file -- GitLab