Revert "Make sure the handle dict values are string. Looks"
This reverts commit 0e45b8fcf1
.
This commit is contained in:
parent
01d368a7a4
commit
c082757de6
@ -67,15 +67,13 @@ class ActivityHandle(object):
|
||||
|
||||
def get_dict(self):
|
||||
"""Retrieve our settings as a dictionary"""
|
||||
result = { }
|
||||
if self.activity_id:
|
||||
result['activity_id'] = str(self.activity_id)
|
||||
result = { 'activity_id' : self.activity_id }
|
||||
if self.pservice_id:
|
||||
result['pservice_id'] = str(self.pservice_id)
|
||||
result['pservice_id'] = self.pservice_id
|
||||
if self.object_id:
|
||||
result['object_id'] = str(self.object_id)
|
||||
result['object_id'] = self.object_id
|
||||
if self.uri:
|
||||
result['uri'] = str(self.uri)
|
||||
result['uri'] = self.uri
|
||||
|
||||
return result
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user