Skip to content

Commit

Permalink
[HeadlineNews]Fix text display & repeating word[gramps51] (gramps-pro…
Browse files Browse the repository at this point in the history
…ject#220)

Fix two issues with Gramplet.

*  Text not wrapping in top section
*  Repeating word "Gramplet" in context menu
  • Loading branch information
sam-m888 authored Sep 14, 2019
1 parent 3169038 commit b99b5f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions HeadlineNewsGramplet/HeadlineNewsGramplet.gpr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
register(GRAMPLET,
id="Headline News Gramplet",
name=_("Headline News Gramplet"),
id="Headline News",
name=_("Headline News"),
description = _("Gramplet that shows the latest Gramps news"),
status = STABLE,
fname="HeadlineNewsGramplet.py",
Expand Down
2 changes: 1 addition & 1 deletion HeadlineNewsGramplet/HeadlineNewsGramplet.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def main(self):
except:
continue
if feed_type == "wiki":
text = str(fp.read())
text = str(fp.read().decode('utf-8'))
if fresh:
self.clear_text()
fresh = False
Expand Down

0 comments on commit b99b5f8

Please sign in to comment.