diff --git a/setup.py b/setup.py index a3beadb954..28d465249c 100644 --- a/setup.py +++ b/setup.py @@ -169,7 +169,7 @@ if __name__ == '__main__': http://%s.kovidgoyal.net For source code access: - bzr branch %s + bzr branch lp:%s To update your copy of the source code: bzr merge diff --git a/src/calibre/trac/plugins/Changelog.py b/src/calibre/trac/plugins/Changelog.py index 774452c447..146d8b16d0 100644 --- a/src/calibre/trac/plugins/Changelog.py +++ b/src/calibre/trac/plugins/Changelog.py @@ -48,7 +48,7 @@ class ChangelogFormatter(blog.LogFormatter): txt = ['= Changelog =\n[[PageOutline]]'] for entry in self.entries: txt.append(u'----\n== Version '+entry[0]+' ==') - if entry[0] == '0.6.0': + if entry[0].strip().startswith('0.6.0'): txt.append(u'For a list of new features in 0.6.0 see http://calibre.kovidgoyal.net/new_in_6') else: for msg in entry[1]: