From c79c2d9f36f27abfa5e2a72e021298728734138d Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 25 May 2014 16:36:09 -0700 Subject: Bring in #1352 --- docs/quick_tutorial/databases.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick_tutorial/databases.rst b/docs/quick_tutorial/databases.rst index 20b3cd46d..7c019dbfc 100644 --- a/docs/quick_tutorial/databases.rst +++ b/docs/quick_tutorial/databases.rst @@ -115,7 +115,7 @@ Steps .. code-block:: bash - $ $VENV/bin/nosetests . + $ $VENV/bin/nosetests tutorial .. ----------------------------------------------------------------- Ran 2 tests in 1.141s -- cgit v1.2.3 From e2ec94f197f7e2a040091d661cc56496e6136eba Mon Sep 17 00:00:00 2001 From: goodwillcoding Date: Sun, 1 Jun 2014 19:31:20 -0700 Subject: fix inclusion of README.rst in the package description --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c832d3fc8..d736dc38d 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ else: here = os.path.abspath(os.path.dirname(__file__)) try: - with open(os.path.join(here, 'README.txt')) as f: + with open(os.path.join(here, 'README.rst')) as f: README = f.read() with open(os.path.join(here, 'CHANGES.txt')) as f: CHANGES = f.read() -- cgit v1.2.3