summaryrefslogtreecommitdiff
path: root/giscanner/annotationparser.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2010-09-23 18:52:29 -0300
committerJohan Dahlin <johan@gnome.org>2010-09-23 18:53:55 -0300
commitbbbe2a2903530ad7246233e2987ed174cf2b0c32 (patch)
tree8a301a5055af9051ca76986750219c4f359c6719 /giscanner/annotationparser.py
parentb57c12a01e48e6b75aab97d409d45ce110978536 (diff)
downloadgobject-introspection-bbbe2a2903530ad7246233e2987ed174cf2b0c32.tar.gz
Make the invalid annotation warning a bit prettier
Diffstat (limited to 'giscanner/annotationparser.py')
-rw-r--r--giscanner/annotationparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/annotationparser.py b/giscanner/annotationparser.py
index 4febc598..58094d0d 100644
--- a/giscanner/annotationparser.py
+++ b/giscanner/annotationparser.py
@@ -128,7 +128,7 @@ class DocTag(object):
def validate(self):
for option in self.options:
if not option in ALL_OPTIONS:
- message.warn('invalid option: %s' % (option, ),
+ message.warn('invalid annotation option: %s' % (option, ),
positions=self.position)
if option == OPT_TRANSFER:
value = self.options[option]