Skip to content

Commit

Permalink
basic repairs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Feb 11, 2014
1 parent d607480 commit 54d581b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -8,9 +8,9 @@
author_email="jim@zope.com",
description="ZC Buildout recipe for defining a file-storage",
long_description=(
open("README.txt").read()
open("README.rst").read()
+ '\n\n' +
open("CHANGES.txt").read()),
open("CHANGES.rst").read()),
license="ZPL 2.1",
keywords=["zodb", "zc.buildout"],
url="http://pypi.python.org/pypi/%s/" % name,
Expand Down
2 changes: 1 addition & 1 deletion zc/recipe/filestorage/tests.py
Expand Up @@ -21,7 +21,7 @@
def test_suite():
global __test__
req = pkg_resources.Requirement.parse('zc.recipe.filestorage')
__test__ = dict(README=pkg_resources.resource_string(req, 'README.txt'))
__test__ = dict(README=pkg_resources.resource_string(req, 'README.rst'))
return doctest.DocTestSuite(
checker=renormalizing.RENormalizing([
(re.compile('\S+%(sep)s\w+%(sep)s\w+.fs'
Expand Down

0 comments on commit 54d581b

Please sign in to comment.