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

Commit e98a3e3

Browse files
committed
fix some fstring convert error
1 parent 3d0eb52 commit e98a3e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crasync/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def __init__(self, client, clan, data):
138138
self.tag = data.get('tag')
139139

140140
def __str__(self):
141-
return '{self.name} (#{0.tag})'.format(self)
141+
return '{0.name} (#{0.tag})'.format(self)
142142

143143
def __repr__(self):
144144
return '<Member tag={0.tag}>'.format(self)

0 commit comments

Comments
 (0)