Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
Fix docs build (#306)
Browse files Browse the repository at this point in the history
* screw the 'irc' script, then
  • Loading branch information
jquast authored Jun 17, 2020
1 parent a760b4d commit 11f445b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,7 @@
'blessed>=1.17.8,<2',
'feedparser>=5.2.1,<6',
'html2text==2019.8.11',
'irc>=11.0.1,<12',
'hgtools==8.1.1',
'more-itertools>=5,<6',
'jaraco.functools==1.20',
'requests>=2.23.0,<3',
'sauce>=1.2,<2',
'six>=1.15.0,<2',
Expand Down
11 changes: 7 additions & 4 deletions x84/default/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,13 @@ def get_menu_items(session):
#
# put your own fun scripts here
#
MenuItem(inp_key=u'irc',
text=u'irc chat',
script='ircchat',
args=(), kwargs={}),
# ugh, the upstream 'irc' module is a PITA, it has broken dependencies
# in the the jaraco.* modules, they're not well-managed or declared,
# all cross-wired and broken and not python 2 compatible when they aren't
# MenuItem(inp_key=u'irc',
# text=u'irc chat',
# script='ircchat',
# args=(), kwargs={}),
MenuItem(inp_key=u'who',
text=u"who's online",
script='online',
Expand Down

0 comments on commit 11f445b

Please sign in to comment.