Avoid quote warnings during '$ make distcheck'
svn: r16414
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -141,9 +141,11 @@ class HolidayTable(object):
|
||||
self.__init_table()
|
||||
|
||||
def __find_holiday_files(self):
|
||||
""" Looks in multiple places for holidays.xml files
|
||||
"""
|
||||
Looks in multiple places for holidays.xml files
|
||||
It will search for the file in user;s plugin directories first,
|
||||
then it will search in program's plugins directories. """
|
||||
then it will search in program's plugins directories.
|
||||
"""
|
||||
|
||||
holiday_file = 'holidays.xml'
|
||||
|
||||
|
||||
@@ -485,7 +485,8 @@ class Canvas(Page):
|
||||
for tmp in range(start_page):
|
||||
list_title.insert(0, "")
|
||||
list_title.append("")
|
||||
list_title.append("") #one extra for security. doesn't hurt.
|
||||
#one extra for security. doesn't hurt.
|
||||
list_title.append("")
|
||||
|
||||
x_page = 0
|
||||
for title in list_title:
|
||||
|
||||
Reference in New Issue
Block a user