From: Andrew Bartlett Date: Mon, 5 Nov 2012 20:48:52 +0000 (+1100) Subject: buildtools: Remove extra space from global: line X-Git-Tag: ldb-1.1.14~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97102fa9963ba88f4ab72165a02071990031a73b;p=thirdparty%2Fsamba.git buildtools: Remove extra space from global: line This makes it easier to put the expected values in a file as we will not have trailing whitespace that is against git style. Andrew Bartlett Signed-off-by: Andrew Bartlett Reviewed-by: Jelmer Vernooij Reviewed-by: Andrew Bartlett --- diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py index d3852ea48ba..eb53f8c69fa 100644 --- a/buildtools/wafsamba/samba_abi.py +++ b/buildtools/wafsamba/samba_abi.py @@ -177,7 +177,7 @@ def abi_write_vscript(f, libname, current_version, versions, symmap, abi_match): break f.write("%s {\n" % symver) if k in invmap: - f.write("\tglobal: \n") + f.write("\tglobal:\n") for s in invmap.get(k, []): f.write("\t\t%s;\n" % s); f.write("}%s;\n\n" % last_key)