mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
s/m/match/
This commit is contained in:
parent
82951a2716
commit
697b8d6bd3
@ -191,7 +191,7 @@ class EditBugReport(EditFile):
|
||||
with open(self.filename, 'r') as f:
|
||||
report = f.read().decode('utf-8')
|
||||
|
||||
m = self.split_re.match(report)
|
||||
report = (m.group(1), m.group(2))
|
||||
match = self.split_re.match(report)
|
||||
report = (match.group(1), match.group(2))
|
||||
os.unlink(self.filename)
|
||||
return report
|
||||
|
Loading…
x
Reference in New Issue
Block a user