Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,6 @@ managers.



### blurb help

**blurb** is self-documenting through the `blurb help` subcommand.
Run without any further arguments, it prints a list of all subcommands,
with a one-line summary of the functionality of each. Run with a
third argument, it prints help on that subcommand (e.g. `blurb help release`).


### blurb add

`blurb add` adds a new `Misc/NEWS` entry for you.
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
- [ ] Check installation:

```bash
python -m pip uninstall -y blurb && python -m pip install -U blurb && blurb help
python -m pip uninstall -y blurb && python -m pip install -U blurb && blurb --help
```
6 changes: 3 additions & 3 deletions src/blurb/_add.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@


def add(*, issue: str | None = None, section: str | None = None):
"""Add a blurb (a Misc/NEWS.d/next entry) to the current CPython repo.
"""Add a blurb (a `Misc/NEWS.d/next` entry) to the current CPython repo.

Use -i/--issue to specify a GitHub issue number or link, e.g.:
Use `-i`/`--issue` to specify a GitHub issue number or link, e.g.:

blurb add -i 12345
# or
blurb add -i https://github.com/python/cpython/issues/12345

Use -s/--section to specify the section name (case-insensitive), e.g.:
Use `-s`/`--section` to specify the section name (case-insensitive), e.g.:

blurb add -s Library
# or
Expand Down
Loading