summaryrefslogtreecommitdiff
path: root/giscanner
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@litl.com>2010-01-08 17:08:44 -0200
committerJohan Dahlin <johan@gnome.org>2010-01-08 17:08:44 -0200
commit816bb4f0a3f62443b24ac6d60b86addc6912f7fc (patch)
treed7c361a1bcf76297005a3acedf789b209a3cd390 /giscanner
parentd3b2976ae77a363d48246afe889860783e6c41d0 (diff)
downloadgobject-introspection-816bb4f0a3f62443b24ac6d60b86addc6912f7fc.tar.gz
Remove tabs, fixes make check
Diffstat (limited to 'giscanner')
-rw-r--r--giscanner/dumper.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py
index 430f81ee..460054ca 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')