summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-02-15 16:05:24 -0500
committerJasper St. Pierre <jstpierre@mecheye.net>2013-02-15 19:54:08 -0500
commitf0bdbc7f283c080da5c07aad5becf6b843e9dd2e (patch)
tree07ed64d6cf5993b7cfacfa68876f13c1be2fef06
parent50e99b62d6b028faeeaf6af3af6c5ef51412f3ec (diff)
downloadgobject-introspection-f0bdbc7f283c080da5c07aad5becf6b843e9dd2e.tar.gz
ast: Fix indentation
-rw-r--r--giscanner/ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/ast.py b/giscanner/ast.py
index d0784c38..c2f89a62 100644
--- a/giscanner/ast.py
+++ b/giscanner/ast.py
@@ -639,7 +639,7 @@ class Function(Callable):
# Named correctly
if not (self.name.endswith('_get_type') or
self.name.endswith('_get_gtype')):
- return False
+ return False
# Doesn't have any parameters
if self.parameters: