File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- output=" $( find docs/source -name ' *.rst' | xargs proselint) "
2
+ output=" $( find docs/source -name ' *.rst' | grep -v docs/source/examples/octocat.rst | xargs proselint) "
3
3
exit_code=$?
4
4
5
5
if echo " $output " | grep -qve ' typography' ; then
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ started when you write
229
229
.. code :: python
230
230
231
231
with self .recorder.use_cassette(cassette_name):
232
- # ...
232
+ # …
233
233
234
234
Everything that talks to GitHub should be written inside of the context
235
235
created by the context manager there. No requests to GitHub should be made
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ Creating an anonymous gist
55
55
print(gist.html_url)
56
56
57
57
In the above examples ``'spam.txt' `` is the file name. GitHub will autodetect
58
- file type based on extension provided. ``'What... is the air-speed velocity of
58
+ file type based on extension provided. ``'What… is the air-speed velocity of
59
59
an unladen swallow?' `` is the file's content or body. ``'Answer this to cross
60
60
the bridge' `` is the gist's description. While required by github3.py, it is
61
61
allowed to be empty, e.g., ``'' `` is accepted by GitHub.
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ New Features
453
453
454
454
- Add ``Organization#all_events ``.
455
455
456
- - Add ``Tag.tagger_as_User `` which attempts to return the tagger as as User.
456
+ - Add ``Tag.tagger_as_User `` which attempts to return the tagger as User.
457
457
458
458
- Add ``Repo.statuses `` and a corresponding ``repo.status.CombinedStatus `` to
459
459
@@ -539,7 +539,7 @@ Bugs Fixed
539
539
so we accidentally left out our actual hard dependencies.
540
540
541
541
- The ``context `` parameter to ``Repository#create_status `` now properly
542
- defaults to ``" default" ``.
542
+ defaults to ``default ``.
543
543
544
544
- Fix AttributeError when ``IssueEvent `` has assignee.
545
545
You can’t perform that action at this time.
0 commit comments