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
782ff1f2
Commit
782ff1f2
authored
Jun 02, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only print debugging output if DEBUG true.
parent
31a9c67d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/bdist_rpm.py
+7
-6
No files found.
Lib/distutils/command/bdist_rpm.py
View file @
782ff1f2
...
@@ -9,7 +9,7 @@ __revision__ = "$Id$"
...
@@ -9,7 +9,7 @@ __revision__ = "$Id$"
import
os
,
string
,
re
import
os
,
string
,
re
from
types
import
*
from
types
import
*
from
distutils.core
import
Command
from
distutils.core
import
Command
,
DEBUG
from
distutils.util
import
get_platform
,
write_file
from
distutils.util
import
get_platform
,
write_file
from
distutils.errors
import
*
from
distutils.errors
import
*
...
@@ -247,11 +247,12 @@ class bdist_rpm (Command):
...
@@ -247,11 +247,12 @@ class bdist_rpm (Command):
def
run
(
self
):
def
run
(
self
):
print
"before _get_package_data():"
if
DEBUG
:
print
"vendor ="
,
self
.
vendor
print
"before _get_package_data():"
print
"packager ="
,
self
.
packager
print
"vendor ="
,
self
.
vendor
print
"doc_files ="
,
self
.
doc_files
print
"packager ="
,
self
.
packager
print
"changelog ="
,
self
.
changelog
print
"doc_files ="
,
self
.
doc_files
print
"changelog ="
,
self
.
changelog
# make directories
# make directories
if
self
.
spec_only
:
if
self
.
spec_only
:
...
...
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