Ticket #16 (closed defect: fixed)
bug (superfluous explicit self argument) in call to syntax_error method
| Reported by: | guest | Owned by: | somebody |
|---|---|---|---|
| Priority: | high | Milestone: | |
| Component: | airspeed | Version: | |
| Severity: | blocker | Keywords: | |
| Cc: |
Description
Please remove explicit self argument as shown in the patch below.
Regards -- Zoran Isailovski
-
airspeed.py
223 223 self.end = element.end 224 224 return element 225 225 expected = ', '.join([cls.__name__ for cls in element_spec]) 226 raise self.syntax_error( self,'one of: ' + expected)226 raise self.syntax_error('one of: ' + expected) 227 227 228 228 229 229 class Text(_Element):
Change History
Note: See
TracTickets for help on using
tickets.
