Skip to content

Commit

Permalink
Fix README for PyPI
Browse files Browse the repository at this point in the history
PyPI's RST parser is fussy and gives up if you get anything slightly wrong. Fix the missing underline.

Test Plan: Ran `python setup.py check --metadata --restructuredtext`. Before, it output:

```
/usr/local/lib/python2.7/site-packages/setuptools/dist.py:284: UserWarning: Normalizing '1.0.0-dev' to '1.0.0.dev0'
  normalized_version,
running check
warning: check: Title underline too short. (line 106)

warning: check: Title underline too short. (line 106)
```

... and returned non-zero status code. Now it passes with:

```
/usr/local/lib/python2.7/site-packages/setuptools/dist.py:284: UserWarning: Normalizing '1.0.0-dev' to '1.0.0.dev0'
  normalized_version,
running check
```
  • Loading branch information
Adam Chainz committed Jan 26, 2016
1 parent cd19fca commit e421f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@


0.5 (2009-05-24)
---------------
----------------

- Added the ``memmon`` plugin, originally bundled with supervisor and
now moved to superlance.
Expand Down

0 comments on commit e421f87

Please sign in to comment.