I\'m getting this error when I run my python script:
TypeError: cannot concatenate \'str\' and \'NoneType\' objects
I\'m pretty sure the \'
NoneType is simply the type of the None singleton:
>>> type(None)
From the latter link above:
NoneThe sole value of the type
NoneType.Noneis frequently used to represent the absence of a value, as when default arguments are not passed to a function. Assignments toNoneare illegal and raise aSyntaxError.
In your case, it looks like one of the items you are trying to concatenate is None, hence your error.