Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c067ef commit 8711a2eCopy full SHA for 8711a2e
1 file changed
Lib/distutils/command/command_template
@@ -2,7 +2,7 @@
2
3
Implements the Distutils 'x' command."""
4
5
-# created 2000/mm/dd, Greg Ward
+# created 2000/mm/dd, John Doe
6
7
__revision__ = "$Id$"
8
@@ -11,8 +11,11 @@ from distutils.core import Command
11
12
class x (Command):
13
14
+ # Brief (40-50 characters) description of the command
15
description = ""
16
17
+ # List of option tuples: long name, short name (None if no short
18
+ # name), and help string.
19
user_options = [('', '',
20
""),
21
]
@@ -27,6 +30,8 @@ class x (Command):
27
30
28
31
29
32
def finalize_options (self):
33
+ if self.x is None:
34
+ self.x =
35
36
# finalize_options()
37
0 commit comments