Avoid quote warnings during '$ make distcheck'

svn: r16414
This commit is contained in:
Jérôme Rapinat
2011-01-19 16:16:21 +00:00
parent 9ae0f76da7
commit e2fcc1d9d0
6 changed files with 38 additions and 17 deletions

View File

@@ -75,8 +75,10 @@ from libtreebase import *
#
#------------------------------------------------------------------------
class DescendantBoxBase(BoxBase):
""" Base for all descendant boxes.
Set the boxstr and some new attributes that are needed """
"""
Base for all descendant boxes.
Set the boxstr and some new attributes that are needed
"""
def __init__(self, boxstr):
BoxBase.__init__(self)
@@ -116,8 +118,10 @@ class FamilyBox(DescendantBoxBase):
self.level = level
class PlaceHolderBox(BoxBase):
""" I am a box that does not print. I am used to make sure information
does not run over areas that we don't wnat information (boxes) """
"""
I am a box that does not print. I am used to make sure information
does not run over areas that we don't wnat information (boxes)
"""
def __init__(self, level):
BoxBase.__init__(self)