0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-11-04 21:58:54 +01:00

fix StoreError syntax

This commit is contained in:
Matthew Hodgson 2017-12-05 11:09:31 +00:00
parent c22e73293a
commit cdc2cb5d11

View file

@ -38,7 +38,7 @@ class ProfileStore(SQLBaseStore):
retcols=("displayname", "avatar_url"),
desc="get_profileinfo",
)
except StoreError, e:
except StoreError as e:
if e.code == 404:
# no match
defer.returnValue(ProfileInfo(None, None))