mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 12:36:11 +02:00
Fix: Reject lines shouldn't be translated
This commit is contained in:
parent
17b6d090db
commit
e217c6fe23
1 changed files with 2 additions and 1 deletions
|
|
@ -136,7 +136,8 @@ class RejectUrlEntry:
|
|||
def fullnote(self):
|
||||
retval = ""
|
||||
if self.title and self.auth:
|
||||
retval = retval + _("%s by %s")%(self.title,self.auth)
|
||||
# don't translate--ends up being saved and confuses regex above.
|
||||
retval = retval + "%s by %s"%(self.title,self.auth)
|
||||
if self.note:
|
||||
retval = retval + " - "
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue