diff --git a/dashboard/core.py b/dashboard/core.py index cb788b9..43729db 100644 --- a/dashboard/core.py +++ b/dashboard/core.py @@ -30,4 +30,9 @@ def show_changelog(): r = requests.get(GH_CHANGELOG_URL) tree = objectify.fromstring(r.content) - return str(dir(tree)) \ No newline at end of file + collector = [] + + for commit in tree.xpath('//entry'): + collector.append(commit.title) + + return '\n'.join(collector) \ No newline at end of file