Merge pull request #424 from colinba/develop

Fix crash when running pyqtgraph with python -OO
This commit is contained in:
Luke Campagnola 2017-01-14 11:27:19 -08:00 committed by GitHub
commit fab19b7ad4

View File

@ -27,7 +27,8 @@ Gradients = OrderedDict([
def addGradientListToDocstring():
"""Decorator to add list of current pre-defined gradients to the end of a function docstring."""
def dec(fn):
fn.__doc__ = fn.__doc__ + str(Gradients.keys()).strip('[').strip(']')
if fn.__doc__ is not None:
fn.__doc__ = fn.__doc__ + str(Gradients.keys()).strip('[').strip(']')
return fn
return dec