Opened 17 years ago
Closed 17 years ago
#893 closed bug (Fixed)
metafile.py: misplaced )
| Reported by: | sebastinas | Owned by: | andar |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Unknown | Version: | 1.1.6 |
| Keywords: | Cc: |
Description
If metafile.py at arounde line 135 a exception gets raised if the filename can't be correctly encoded. The code reads as
raise Exception('foo') % (bar1, bar2)
wheres it should read
raise Exception('foo' % (bar1, bar2))
The attached patch fixes this.
Attachments (1)
Change History (2)
by , 17 years ago
| Attachment: | metafile.py.patch added |
|---|
comment:1 by , 17 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.


