Skip to content

Commit e83c6b0

Browse files
author
MuffinMedic
committed
Update help documentation
1 parent 3420242 commit e83c6b0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

plugins/reddit_info.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def time_format(numdays):
162162

163163
@hook.command("submods", "mods", "rmods", singlethreaded=True)
164164
def submods(text, chan):
165-
"""submods <subreddit> prints the moderators of the specified subreddit. Do not include /r/ when specifying a subreddit."""
165+
"""submods <subreddit> prints the moderators of the specified subreddit."""
166166
global search_pages
167167
search_pages[chan] = []
168168
search_page_indexes[chan] = 0
@@ -193,7 +193,7 @@ def submods(text, chan):
193193

194194
@hook.command("subinfo","subreddit", "sub", "rinfo", singlethreaded=True)
195195
def subinfo(text):
196-
"""subinfo <subreddit> fetches information about the specified subreddit. Do not include /r/ when specifying a subreddit."""
196+
"""subinfo <subreddit> fetches information about the specified subreddit."""
197197
sub = text
198198
if sub.startswith('/r/'):
199199
sub = sub[3:]
@@ -217,7 +217,7 @@ def subinfo(text):
217217
age = (int(sub_age.days / 365), "y")
218218
else:
219219
age = (sub_age.days, "d")
220-
out = "r/\x03{}\x02 - {} - a community for {}{}, there are {:,} subscribers and {:,} people online now.".format(name, title, age[0], age[1], subscribers, active)
220+
out = "/r/\x03{}\x02 - {} - a community for {}{}, there are {:,} subscribers and {:,} people online now.".format(name, title, age[0], age[1], subscribers, active)
221221
if nsfw:
222222
out += " \x0304NSFW\x0304"
223223
return out

0 commit comments

Comments
 (0)