Fix unsupported format character
This commit is contained in:
parent
e39e8ba308
commit
5c34be15b1
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ def get_docstring(filename, verbose=False):
|
||||||
theid = t.id
|
theid = t.id
|
||||||
except AttributeError as e:
|
except AttributeError as e:
|
||||||
# skip errors can happen when trying to use the normal code
|
# skip errors can happen when trying to use the normal code
|
||||||
display.warning("Failed to assign id for %t on %s, skipping" % (t, filename))
|
display.warning("Failed to assign id for %s on %s, skipping" % (t, filename))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if 'DOCUMENTATION' in theid:
|
if 'DOCUMENTATION' in theid:
|
||||||
|
|
Loading…
Reference in a new issue