2004-09-14 Tim Waugh <twaugh@redhat.com>
* src/docgen/PSDrawDoc.py (PSDrawDoc.__init__): Fixed base method call (missing parameter). * src/docgen/SvgDrawDoc.py (SvgDrawDoc.__init__): Likewise. svn: r3542
This commit is contained in:
parent
3a66750eb5
commit
dc9c4b26bc
@ -1,3 +1,8 @@
|
||||
2004-09-14 Tim Waugh <twaugh@redhat.com>
|
||||
* src/docgen/PSDrawDoc.py (PSDrawDoc.__init__): Fixed base method
|
||||
call (missing parameter).
|
||||
* src/docgen/SvgDrawDoc.py (SvgDrawDoc.__init__): Likewise.
|
||||
|
||||
2004-09-13 Tim Waugh <twaugh@redhat.com>
|
||||
* src/GenericFilter.py (IsAncestorOfFilterMatch.apply): Fixed
|
||||
thinko.
|
||||
|
@ -55,7 +55,7 @@ def pt2cm(val):
|
||||
class PSDrawDoc(BaseDoc.BaseDoc):
|
||||
|
||||
def __init__(self,styles,type,template,orientation):
|
||||
BaseDoc.BaseDoc.__init__(self,styles,type,orientation)
|
||||
BaseDoc.BaseDoc.__init__(self,styles,type,template,orientation)
|
||||
self.f = None
|
||||
self.filename = None
|
||||
self.level = 0
|
||||
|
@ -46,7 +46,7 @@ import Errors
|
||||
class SvgDrawDoc(BaseDoc.BaseDoc):
|
||||
|
||||
def __init__(self,styles,type,template,orientation):
|
||||
BaseDoc.BaseDoc.__init__(self,styles,type,orientation)
|
||||
BaseDoc.BaseDoc.__init__(self,styles,type,template,orientation)
|
||||
self.f = None
|
||||
self.filename = None
|
||||
self.level = 0
|
||||
|
Loading…
Reference in New Issue
Block a user