File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,4 +34,4 @@ Having individual handlers as we have now which modify the payload to use our
34
34
objects when available is more sensible.
35
35
36
36
.. links
37
- .. _type : http ://developer.github.com/v3/events/types
37
+ .. _type : https ://developer.github.com/v3/activity /events/types
Original file line number Diff line number Diff line change 14
14
class Event (GitHubCore ):
15
15
16
16
"""The :class:`Event <Event>` object. It structures and handles the data
17
- returned by via the `Events <http ://developer.github.com/v3/events>`_
17
+ returned by via the `Events <https ://developer.github.com/v3/activity /events>`_
18
18
section of the GitHub API.
19
19
20
20
Two events can be compared like so::
@@ -42,7 +42,7 @@ def _update_attributes(self, event):
42
42
self .org = None
43
43
if event .get ('org' ):
44
44 self .org = Organization (event .get ('org' ))
45
- #: Event type http ://developer.github.com/v3/activity/events/types/
45
+ #: Event type https ://developer.github.com/v3/activity/events/types/
46
46
self .type = event .get ('type' )
47
47
handler = _payload_handlers .get (self .type , identity )
48
48
#: Dictionary with the payload. Payload structure is defined by type_.
You can’t perform that action at this time.
0 commit comments