summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-03-02 09:41:53 +0100
committerStefan Behnel <stefan_ml@behnel.de>2014-03-02 09:41:53 +0100
commit6056c8c46b7a3cbe60a63fc51a0abaa1f137ccab (patch)
treed0decd508fd18b945a0c0fcee7cce1efcd3498a8
parent91a07c8c721b9143920fe87630ca26e309acd802 (diff)
downloadcython-6056c8c46b7a3cbe60a63fc51a0abaa1f137ccab.tar.gz
whitespace fix
-rw-r--r--Cython/Utility/MemoryView.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/MemoryView.pyx b/Cython/Utility/MemoryView.pyx
index 9a359e6b3..a5d267ca9 100644
--- a/Cython/Utility/MemoryView.pyx
+++ b/Cython/Utility/MemoryView.pyx
@@ -156,7 +156,7 @@ cdef class array:
cdef char order
if mode == 'fortran':
order = 'F'
- self.mode =u'fortran'
+ self.mode = u'fortran'
else:
order = 'C'
self.mode = u'c'