Opened 15 years ago

Closed 15 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)

metafile.py.patch (680 bytes) - added by sebastinas 15 years ago.

Download all attachments as: .zip

Change History (2)

Changed 15 years ago by sebastinas

comment:1 Changed 15 years ago by andar

  • Resolution set to fixed
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.