diff options
author | Руслан Ижбулатов <lrn1986@gmail.com> | 2014-02-21 11:18:47 +0000 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2014-02-22 18:30:16 -0500 |
commit | 160e995a63fc54dbbfb3131ff23b0327077608ec (patch) | |
tree | 9f2639f996cbbbe6fcea82591e3f17c50117b23b /giscanner/dumper.py | |
parent | 56318cb19d1cd9214e7fbe764c6c47ae15b5fd46 (diff) | |
download | gobject-introspection-160e995a63fc54dbbfb3131ff23b0327077608ec.tar.gz |
Fix a typo (exe -> .exe)
https://bugzilla.gnome.org/show_bug.cgi?id=724884
Diffstat (limited to 'giscanner/dumper.py')
-rw-r--r-- | giscanner/dumper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/dumper.py b/giscanner/dumper.py index 1baec5c1..ea3fe688 100644 --- a/giscanner/dumper.py +++ b/giscanner/dumper.py @@ -159,7 +159,7 @@ class DumpCompiler(object): o_path = self._generate_tempfile(tmpdir, '.o') if os.name == 'nt': - ext = 'exe' + ext = '.exe' else: ext = '' |