From 564e39be424f8151a2749055e06d0b5b4666bbf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Fri, 22 Jun 2012 21:35:04 +0200 Subject: really fix multi-line package doc-string --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 4da6258..e447fc4 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except ImportError: src = open('jsonpatch.py').read() metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", src)) -docstrings = re.findall('"""(.*)"""', src, re.MULTILINE | re.DOTALL) +docstrings = re.findall('"""([^"]*)"""', src, re.MULTILINE | re.DOTALL) PACKAGE = 'jsonpatch' -- cgit v1.2.1