From: Dieter Verfaillie Date: Mon, 19 Sep 2011 18:20:35 +0000 (+0200) Subject: Fix incorrect extension for tempfile X-Git-Tag: GOBJECT_INTROSPECTION_1_30_0~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=241eedc30d220963c966efa7b411dda4531c02ce;p=platform%2Fupstream%2Fgobject-introspection.git Fix incorrect extension for tempfile I set ext to None in commit f2a70843905839a1b11795310d2aa3b85a474e77 without realizing _generate_tempfile does a simple string formatting. A simple test proves this does not generate an empty string: $ python -c "f = '%s' % None; print f, type(f)" None So pass an empty string instead of None for the suffix parameter. https://bugzilla.gnome.org/show_bug.cgi?id=659502 --- diff --git a/giscanner/dumper.py b/giscanner/dumper.py index a6347d81..1a8fdb56 100644 --- a/giscanner/dumper.py +++ b/giscanner/dumper.py @@ -149,7 +149,7 @@ class DumpCompiler(object): if os.name == 'nt': ext = 'exe' else: - ext = None + ext = '' bin_path = self._generate_tempfile(tmpdir, ext)