Skip to content

Commit 72b9ad8

Browse files
Merge pull request #148 from virtualsnake/master
Fix issue with exception in case of ProfileImage field, add ProfileImage to list of available entity classes
2 parents 30ca7ae + 3677cd9 commit 72b9ad8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pyral/entity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,7 @@ class TimeEntryValue (WorkspaceDomainObject): pass
436436
class UserIterationCapacity (WorkspaceDomainObject): pass
437437
class RecycleBinEntry (WorkspaceDomainObject): pass
438438
class RevisionHistory (WorkspaceDomainObject): pass
439+
class ProfileImage (WorkspaceDomainObject): pass
439440
class Revision (WorkspaceDomainObject):
440441
INFO_ATTRS = ['RevisionNumber', 'Description', 'CreationDate', 'User']
441442
def info(self):
@@ -611,6 +612,7 @@ def __setattr__(self, item, value):
611612
'Preference' : Preference,
612613
'SCMRepository' : SCMRepository,
613614
'RevisionHistory' : RevisionHistory,
615+
'ProfileImage' : ProfileImage,
614616
'Revision' : Revision,
615617
'Attachment' : Attachment,
616618
'AttachmentContent' : AttachmentContent,

0 commit comments

Comments
 (0)