Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8711a2e

Browse files
committed
Changed default developer name.
Added some guiding comments.
1 parent 2c067ef commit 8711a2e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Lib/distutils/command/command_template

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Implements the Distutils 'x' command."""
44

5-
# created 2000/mm/dd, Greg Ward
5+
# created 2000/mm/dd, John Doe
66

77
__revision__ = "$Id$"
88

@@ -11,8 +11,11 @@ from distutils.core import Command
1111

1212
class x (Command):
1313

14+
# Brief (40-50 characters) description of the command
1415
description = ""
1516

17+
# List of option tuples: long name, short name (None if no short
18+
# name), and help string.
1619
user_options = [('', '',
1720
""),
1821
]
@@ -27,6 +30,8 @@ class x (Command):
2730

2831

2932
def finalize_options (self):
33+
if self.x is None:
34+
self.x =
3035

3136
# finalize_options()
3237

0 commit comments

Comments
 (0)