mirror of https://github.com/BOINC/boinc.git
Fix number of placeholders in repr formatting for front_Host
This commit is contained in:
parent
b443d6d6bf
commit
a04e06dc5c
|
@ -35,7 +35,7 @@ class front_Team:
|
|||
|
||||
class front_Host:
|
||||
def __repr__(self):
|
||||
return '<Host#%s %s>'%(self.id, self.user.name, self.domain_name)
|
||||
return '<Host#%s %s %s>'%(self.id, self.user.name, self.domain_name)
|
||||
|
||||
class front_Workunit:
|
||||
def __repr__(self):
|
||||
|
|
Loading…
Reference in New Issue