[Checkins] SVN: zc.objectlog/trunk/setup.py updated short (regular) and long descriptions.

Wichert Akkerman wichert at wiggy.net
Wed Apr 2 14:42:20 EDT 2008


Previously Satchidanand Haridas wrote:
> --- zc.objectlog/trunk/setup.py	2008-04-02 18:38:10 UTC (rev 85070)
> +++ zc.objectlog/trunk/setup.py	2008-04-02 18:40:29 UTC (rev 85071)
> @@ -1,6 +1,8 @@
>  from setuptools import setup, find_packages
>  
> -long_description = open("src/zc/objectlog/log.txt").read()
> +long_description = (open("README.txt").read() +
> +                    '\n\n' +
> +                    open("src/zc/objectlog/log.txt").read())

You need to use os.path.join if you want to deal with subdirectories.
That path does not work on windows machines.

Wichert.

-- 
Wichert Akkerman <wichert at wiggy.net>    It is simple to make things.
http://www.wiggy.net/                   It is hard to make things simple.


More information about the Checkins mailing list