summaryrefslogtreecommitdiff
path: root/gtkdoc/mkdb.py
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2018-01-10 19:58:05 +0100
committerStefan Sauer <ensonic@users.sf.net>2018-01-10 19:58:05 +0100
commit2944a07e8e0bbf592a2cbc9ebd3b758155937782 (patch)
tree6298ecda364e892974876927f4397482eecec219 /gtkdoc/mkdb.py
parent5f7b4431e17214ea05b090ad6cd9cd1b268769af (diff)
downloadgtk-doc-2944a07e8e0bbf592a2cbc9ebd3b758155937782.tar.gz
mkdb: readd space in error message
Diffstat (limited to 'gtkdoc/mkdb.py')
-rw-r--r--gtkdoc/mkdb.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtkdoc/mkdb.py b/gtkdoc/mkdb.py
index 1b4f4c6..0abdb31 100644
--- a/gtkdoc/mkdb.py
+++ b/gtkdoc/mkdb.py
@@ -2044,8 +2044,10 @@ def ParseStabilityLevel(stability, file, line, message):
elif sl == 'private':
stability = "Private"
else:
- common.LogWarning(file, line, "%s is %s." % (message, stability) +
- "It should be one of these: Stable, Unstable, or Private.")
+ common.LogWarning(file, line,
+ "%s is %s. It should be one of these: Stable, "
+ "Unstable, or Private." % (
+ message, stability))
return str(stability)