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
1=== modified file 'bt/models.py'
2--- bt/models.py 2010-04-22 12:52:10 +0000
3+++ bt/models.py 2010-06-10 15:39:28 +0000
4@@ -76,7 +76,7 @@
5 return self.mask
6
7 def ban_pattern(self):
8- return re.compile(self.mask.replace('?','.').replace('*','.*')
9+ return re.compile(self.mask.replace('?','.').replace('*','.*'))
10
11 class Kick(Event):
12 reason = models.CharField(max_length=255,null = True)

Subscribers

People subscribed via source and target branches

to all changes: