Skip to content
This repository was archived by the owner on Apr 12, 2018. It is now read-only.

Commit ba80c49

Browse files
toxsickggreg
authored andcommitted
fix activity listing for domain
swf.models.domain.Domain type was passed to boot call when it should only be the domains name
1 parent 93dbffa commit ba80c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swf/querysets/activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def get_activity_types():
301301
response = {'nextPageToken': None}
302302
while 'nextPageToken' in response:
303303
response = self.connection.list_activity_types(
304-
self.domain,
304+
self.domain.name,
305305
registration_status,
306306
next_page_token=response['nextPageToken']
307307
)

0 commit comments

Comments
 (0)