Merge lp:~arvindsraj-deactivatedaccount/bantrackertwo/paranthesis-mismatch-bt-models.py into lp:bantrackertwo

Proposed by Arvind S Raj
Status: Approved
Approved by: Benjamin Rubin
Approved revision: 18
Proposed branch: lp:~arvindsraj-deactivatedaccount/bantrackertwo/paranthesis-mismatch-bt-models.py
Merge into: lp:bantrackertwo
Diff against target: 12 lines (+1/-1)
1 file modified
bt/models.py (+1/-1)
To merge this branch: bzr merge lp:~arvindsraj-deactivatedaccount/bantrackertwo/paranthesis-mismatch-bt-models.py
Reviewer Review Type Date Requested Status
Benjamin Rubin Approve
Review via email: mp+27284@code.launchpad.net

Description of the change

Fixed a paranthesis mismatch in function ban_pattern of class Mute in file bt/models.py

To post a comment you must log in.
Revision history for this message
Benjamin Rubin (bnrubin) :
review: Approve

Unmerged revisions

18. By Arvind S Raj <arvind@dnivra>

paranthesis mismatch fixed

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bt/models.py'
--- bt/models.py 2010-04-22 12:52:10 +0000
+++ bt/models.py 2010-06-10 15:39:28 +0000
@@ -76,7 +76,7 @@
76 return self.mask76 return self.mask
77 77
78 def ban_pattern(self):78 def ban_pattern(self):
79 return re.compile(self.mask.replace('?','.').replace('*','.*')79 return re.compile(self.mask.replace('?','.').replace('*','.*'))
8080
81class Kick(Event):81class Kick(Event):
82 reason = models.CharField(max_length=255,null = True) 82 reason = models.CharField(max_length=255,null = True)

Subscribers

People subscribed via source and target branches

to all changes: