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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user