diff options
author | D'Arcy J.M. Cain <darcy@druid.net> | 2001-05-30 02:04:49 +0000 |
---|---|---|
committer | D'Arcy J.M. Cain <darcy@druid.net> | 2001-05-30 02:04:49 +0000 |
commit | d34a5d8e2d0ae533336c27242c2e51eadc36f6c8 (patch) | |
tree | fcb4321496f664eaa0b865f728b989ae042fb14d /src/interfaces/python/setup.py | |
parent | 8a3b80deb03b3d4be7fb1ffbe6b10f49bc0253db (diff) | |
download | postgresql-d34a5d8e2d0ae533336c27242c2e51eadc36f6c8.tar.gz postgresql-d34a5d8e2d0ae533336c27242c2e51eadc36f6c8.zip |
Add missing comma.
Diffstat (limited to 'src/interfaces/python/setup.py')
-rwxr-xr-x | src/interfaces/python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/setup.py b/src/interfaces/python/setup.py index 474808ec2a3..79650522d8f 100755 --- a/src/interfaces/python/setup.py +++ b/src/interfaces/python/setup.py @@ -50,7 +50,7 @@ setup (name = "PyGreSQL", include_dirs = include_dirs, library_dirs = library_dirs, libraries = optional_libs - )] + )], data_files = data_files ) |