diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 16:15:32 +0000 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 16:15:32 +0000 |
| commit | 1383a9aff8261f009699933d1118971bab22dbed (patch) | |
| tree | 2a4208422cd28c3fcedf60c166e2e5c02e9c1a2d /distutils2/command | |
| parent | 11bdbb707948bda4b3cc2a48cf54bbaef0b2a6a1 (diff) | |
| download | disutils2-1383a9aff8261f009699933d1118971bab22dbed.tar.gz | |
Don't check twice the same thing (restructured text compatibility).
Add a note in DEVNOTES to be sure all tests are really runned (and not skipped cause of docutils)
Diffstat (limited to 'distutils2/command')
| -rw-r--r-- | distutils2/command/check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/command/check.py b/distutils2/command/check.py index 6dd44be..03c48c3 100644 --- a/distutils2/command/check.py +++ b/distutils2/command/check.py @@ -64,7 +64,7 @@ class check(Command): def check_restructuredtext(self): """Checks if the long string fields are reST-compliant.""" - missing, warnings = self.distribution.metadata.check() + missing, warnings = self.distribution.metadata.check(restructuredtext=True) if self.distribution.metadata.docutils_support: for warning in warnings: line = warning[-1].get('line') |
