You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""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."""
197
197
sub=text
198
198
ifsub.startswith('/r/'):
199
199
sub=sub[3:]
@@ -217,7 +217,7 @@ def subinfo(text):
217
217
age= (int(sub_age.days/365), "y")
218
218
else:
219
219
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)
0 commit comments