Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ffb963c7
Commit
ffb963c7
authored
Mar 22, 2001
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the get_contact*() accessors instead of get_maintainer*()
parent
a0ea7c1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/distutils/dist.py
Lib/distutils/dist.py
+2
-2
No files found.
Lib/distutils/dist.py
View file @
ffb963c7
...
...
@@ -992,8 +992,8 @@ class DistributionMetadata:
pkg_info
.
write
(
'Version: %s
\
n
'
%
self
.
get_version
()
)
pkg_info
.
write
(
'Summary: %s
\
n
'
%
self
.
get_description
()
)
pkg_info
.
write
(
'Home-page: %s
\
n
'
%
self
.
get_url
()
)
pkg_info
.
write
(
'Author: %s
\
n
'
%
self
.
get_
maintainer
()
)
pkg_info
.
write
(
'Author-email: %s
\
n
'
%
self
.
get_
maintainer
_email
()
)
pkg_info
.
write
(
'Author: %s
\
n
'
%
self
.
get_
contact
()
)
pkg_info
.
write
(
'Author-email: %s
\
n
'
%
self
.
get_
contact
_email
()
)
pkg_info
.
write
(
'License: %s
\
n
'
%
self
.
get_licence
()
)
long_desc
=
rfc822_escape
(
self
.
get_long_description
()
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment