From 816bb4f0a3f62443b24ac6d60b86addc6912f7fc Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Fri, 8 Jan 2010 17:08:44 -0200 Subject: [PATCH] Remove tabs, fixes make check --- giscanner/dumper.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/giscanner/dumper.py b/giscanner/dumper.py index 430f81e..460054c 100644 --- a/giscanner/dumper.py +++ b/giscanner/dumper.py @@ -96,8 +96,8 @@ class DumpCompiler(object): # Public API def run(self): - tpl_args = {} - tpl_args['init_sections'] = "\n".join(self._options.init_sections) + tpl_args = {} + tpl_args['init_sections'] = "\n".join(self._options.init_sections) c_path = self._generate_tempfile('.c') f = open(c_path, 'w') @@ -153,8 +153,8 @@ class DumpCompiler(object): def _compile(self, output, *sources): # Not strictly speaking correct, but easier than parsing shell args = self._compiler_cmd.split() - # Do not add -Wall when using init code as we do not include any - # header of the library being introspected + # Do not add -Wall when using init code as we do not include any + # header of the library being introspected if self._compiler_cmd == 'gcc' and not self._options.init_sections: args.append('-Wall') pkgconfig_flags = self._run_pkgconfig('--cflags') -- 2.39.2