From: Johan Dahlin Date: Fri, 8 Jan 2010 19:08:44 +0000 (-0200) Subject: Remove tabs, fixes make check X-Git-Tag: GOBJECT_INTROSPECTION_0_6_8~23 X-Git-Url: http://git.roojs.org/?p=gnome.gobject-introspection;a=commitdiff_plain;h=816bb4f0a3f62443b24ac6d60b86addc6912f7fc Remove tabs, fixes make check --- 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')