GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Commit Graphs
Network
Fork
: 0
kalle
/
postorius
Browse code
fixed client property in MailmanClientMixin
master
1 parent
c9f14b7
commit
bb7dff3cf31372fd892553c2d37a3fbffe794f31
Florian Fuchs
authored
on 5 Sep 2013
Patch
Unified
Split
Showing
1 changed file
+1
-1
■
■
■■■
src/postorius/views/generic.py
Ignore Space
Show notes
View
2
■
■
■■■
src/postorius/views/generic.py
class
MailmanClientMixin
(
object
):
"""Adds a mailmanclient.Client instance."""
def
client
(
self
):
if
getattr
(
self
.
_client
,
'_client'
,
None
)
is
None
:
if
getattr
(
self
,
'_client'
,
None
)
is
None
:
self
.
_client
=
utils
.
get_client
()
return
self
.
_client
Show line notes below