I'm getting this error when I run my python script:
TypeError: cannot concatenate 'str' and 'NoneType' objects
I'm pretty sure the 'str' means string, but I dont know what a 'NoneType' object is. My script craps out on the second line, I know the first one works because the commands from that line are in my asa as I would expect. At first I thought it may be because I'm using variables and user input inside send_command.
Everything in 'CAPS' are variables, everything in 'lower case' is input from 'parser.add_option' options.
I'm using pexpect, and optparse
send_command(child, SNMPGROUPCMD + group + V3PRIVCMD)
send_command(child, SNMPSRVUSRCMD + snmpuser + group + V3AUTHCMD + snmphmac + snmpauth + PRIVCMD + snmpencrypt + snmppriv)
NoneType
is simply the type of theNone
singleton:From the latter link above:
In your case, it looks like one of the items you are trying to concatenate is
None
, hence your error.In the error message, instead of telling you that you can't concatenate two objects by showing their values (a string and
None
in this example), the Python interpreter tells you this by showing the types of the objects that you tried to concatenate. The type of every string isstr
while the type of the singleNone
instance is calledNoneType
.You normally do not need to concern yourself with
NoneType
, but in this example it is necessary to know thattype(None) == NoneType
.A nonetype is the type of a None.
See the docs here: https://docs.python.org/2/library/types.html#types.NoneType
For the sake of defensive programming, objects should be checked against nullity before using.
or
One of the variables has not been given any value, thus it is a NoneType. You'll have to look into why this is, it's probably a simple logic error on your part.
Your error's occurring due to something like this:
>>> None + "hello world"
>>>Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
Python's None object is roughly equivalent to null, nil, etc. in other languages.