We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09b35e commit 9a6e407Copy full SHA for 9a6e407
1 file changed
docs/examples/github.rst
@@ -131,11 +131,11 @@ I'm cheating here and using most of the follow functions in one example
131
if not g.is_following(sigma):
132
g.follow(sigma)
133
134
- if not g.is_watching(sigma, github3py):
135
- g.watch(sigma, github3py)
+ if not g.is_subscribed(sigma, github3py):
+ g.subscribe(sigma, github3py)
136
137
- if g.is_watching(sigma, todopy):
138
- g.unwatch(sigma, todopy)
+ if g.is_subscribed(sigma, todopy):
+ g.unsubscribe(sigma, todopy)
139
140
for follower in g.list_followers():
141
print("{0} is following me.".format(follower.login))
0 commit comments