PEP8: fix E225: missing whitespace around operator
[sfrench/samba-autobuild/.git] / source3 / build / charset.py
index 75981379577eff2972243d481a4dd74ea926d672..1a23405448f392e0b6f8421e3c39e7cab6b69640 100644 (file)
@@ -7,19 +7,19 @@ def CHECK_SAMBA3_CHARSET(conf, crossbuild=False):
     '''Check for default charsets for Samba3
     '''
     if conf.CHECK_ICONV(define='HAVE_NATIVE_ICONV'):
-        default_dos_charset=False
-        default_unix_charset=False
+        default_dos_charset = False
+        default_unix_charset = False
 
         # check for default dos charset name
         for charset in ['CP850', 'IBM850']:
             if conf.CHECK_CHARSET_EXISTS(charset, headers='iconv.h'):
-                default_dos_charset=charset
+                default_dos_charset = charset
                 break
 
         # check for default unix charset name
         for charset in ['UTF-8', 'UTF8']:
             if conf.CHECK_CHARSET_EXISTS(charset, headers='iconv.h'):
-                default_unix_charset=charset
+                default_unix_charset = charset
                 break
 
         # At this point, we have a libiconv candidate. We know that
@@ -29,8 +29,8 @@ def CHECK_SAMBA3_CHARSET(conf, crossbuild=False):
         # deal, since we can't guarantee that the results we get now will
         # match the results we get at runtime anyway.
         if crossbuild:
-            default_dos_charset="CP850"
-            default_unix_charset="UTF-8"
+            default_dos_charset = "CP850"
+            default_unix_charset = "UTF-8"
             # TODO: this used to warn about the set charset on cross builds
 
         if default_dos_charset is False or default_unix_charset is False: