summaryrefslogtreecommitdiff
path: root/source3/build
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-07-30 18:13:51 +1200
committerDouglas Bagnall <dbagnall@samba.org>2018-08-24 07:49:25 +0200
commit086daf5f36bb832ced6b5e38ccdbb66e7a2a459e (patch)
tree76e84bef324705cda12d6bbed9e19ff487c50714 /source3/build
parent1c5fa5dc0ee47de0bb6edc39a4dfe2295afb4bff (diff)
downloadsamba-086daf5f36bb832ced6b5e38ccdbb66e7a2a459e.tar.gz
PEP8: fix E101: indentation contains mixed spaces and tabs
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'source3/build')
-rw-r--r--source3/build/charset.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/source3/build/charset.py b/source3/build/charset.py
index 00335577361..a800eeee447 100644
--- a/source3/build/charset.py
+++ b/source3/build/charset.py
@@ -22,15 +22,15 @@ def CHECK_SAMBA3_CHARSET(conf, crossbuild=False):
default_unix_charset=charset
break
- # At this point, we have a libiconv candidate. We know that
- # we have the right headers and libraries, but we don't know
- # whether it does the conversions we want. We can't test this
- # because we are cross-compiling. This is not necessarily a big
- # 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"
+ # At this point, we have a libiconv candidate. We know that
+ # we have the right headers and libraries, but we don't know
+ # whether it does the conversions we want. We can't test this
+ # because we are cross-compiling. This is not necessarily a big
+ # 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"
# TODO: this used to warn about the set charset on cross builds
if default_dos_charset is False or default_unix_charset is False: