mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
Fix for corner-case with deleting Rejects.
This commit is contained in:
parent
4a75cc1526
commit
726c836587
1 changed files with 1 additions and 1 deletions
|
|
@ -148,7 +148,7 @@ class RejectUrlEntry:
|
||||||
|
|
||||||
def to_line(self):
|
def to_line(self):
|
||||||
# always 'url,'
|
# always 'url,'
|
||||||
return self.url+","+self.fullnote()
|
return "%s,%s"%(self.url,self.fullnote())
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_data(cls,data):
|
def from_data(cls,data):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue