Skip to content

Commit e46c188

Browse files
author
Gauvain Pocentek
committed
Merge branch 'master' of github.com:gpocentek/python-gitlab
2 parents 86ade4a + aea678b commit e46c188

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/objects.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ def __eq__(self, other):
543543
if type(other) is type(self):
544544
selfdict = self.as_dict()
545545
otherdict = other.as_dict()
546-
selfdict.pop(u'password', None)
547-
otherdict.pop(u'password', None)
546+
selfdict.pop('password', None)
547+
otherdict.pop('password', None)
548548
return selfdict == otherdict
549549
return False
550550

0 commit comments

Comments
 (0)