Don't convert handle if None
svn: r21121
This commit is contained in:
parent
00bd4b81f8
commit
22f646ccce
@ -26,7 +26,7 @@ class Handle:
|
||||
def __init__(self, classname, handle):
|
||||
""" Class to hold type and handle of referenced item """
|
||||
self.classname = classname
|
||||
if not isinstance(handle, UNITYPE):
|
||||
if handle and not isinstance(handle, UNITYPE):
|
||||
handle = handle.decode('utf-8')
|
||||
self.handle = handle
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user