From f1656f3a0485c7f9966e001c4ccb6cdc61a79130 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Sun, 25 Apr 2004 05:38:17 +0000 Subject: [PATCH] Update svn: r3107 --- src/plugins/Ancestors.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/Ancestors.py b/src/plugins/Ancestors.py index 0e7252032..07f8ca8b1 100644 --- a/src/plugins/Ancestors.py +++ b/src/plugins/Ancestors.py @@ -619,8 +619,8 @@ class ComprehensiveAncestorsReport (Report.Report): citation += "[%d" % ind comments = ref.get_comments () if comments and comments.find ('\n') == -1: - # Work around rstrip('.') which is not working - # with python2.2.1 and earlier + # Work around rstrip('.') which is not working + # with python2.2.1 and earlier #citation += " - %s" % comments.rstrip ('.') comments = comments.rstrip() if comments[-1] == '.': @@ -654,7 +654,7 @@ class ComprehensiveAncestorsReport (Report.Report): # with python2.2.1 and earlier nick = nick.strip() if nick[0] == '"': - nick = nick[1:] + nick = nick[1:] if nick[-1] == '"': nick = nick[:-1] name += ' ("%s")' % nick