diff options
author | Johan Dahlin <johan@src.gnome.org> | 2008-10-21 17:28:16 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-10-21 17:28:16 +0000 |
commit | 3d22724567656cb559cf983660989a68241a0b95 (patch) | |
tree | aa63fe2d661a3fa3e98a3ee5499d2d6f09bc2a0d /giscanner/libtoolimporter.py | |
parent | efcca1bcac888b214b80fe2451edacbb3b224be3 (diff) | |
download | gobject-introspection-3d22724567656cb559cf983660989a68241a0b95.tar.gz |
Add missing whitespace to make pep8 happy
svn path=/trunk/; revision=774
Diffstat (limited to 'giscanner/libtoolimporter.py')
-rw-r--r-- | giscanner/libtoolimporter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/giscanner/libtoolimporter.py b/giscanner/libtoolimporter.py index 1a53bc5f..772a7831 100644 --- a/giscanner/libtoolimporter.py +++ b/giscanner/libtoolimporter.py @@ -26,6 +26,7 @@ from .utils import extract_libtool class LibToolImporter(object): + def __init__(self, name, path): self.name = name self.path = path @@ -44,8 +45,10 @@ class LibToolImporter(object): ('.so', 'rb', 3)) return mod + def install_libtoolimporter(): sys.meta_path.append(LibToolImporter) + def uninstall_libtoolimporter(): sys.meta_path.remove(LibToolImporter) |