Skip to content

Commit 688df5d

Browse files
author
btgoodwin
committed
Minor fix, registration ID was becoming unicode
1 parent 5ecedfa commit 688df5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

model/domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def __init__(self, domain, on_disconnect=None, filter=None, keep_structs=None):
120120
GenericEventConsumer.__init__(self, self.deliver, on_disconnect, filter, keep_structs)
121121
self.__listeners = []
122122
self.__domain = domain
123-
self.__registration_id = domain + str(uuid.uuid4())
123+
self.__registration_id = str(domain + str(uuid.uuid4()))
124124

125125
@property
126126
def registration_id(self):

0 commit comments

Comments
 (0)