diff options
| author | Josip Djolonga <devnull@localhost> | 2010-07-19 02:22:06 +0200 |
|---|---|---|
| committer | Josip Djolonga <devnull@localhost> | 2010-07-19 02:22:06 +0200 |
| commit | 618db83c5b129c82d26332b86b5244e129b57cc4 (patch) | |
| tree | c8ccb936ada9db3e136a49ee7d2e371038d3fd71 /src/distutils2/command | |
| parent | ddddcbb9e304b0bd9d85a53e4c825bb502db745d (diff) | |
| download | disutils2-618db83c5b129c82d26332b86b5244e129b57cc4.tar.gz | |
Some fixes after Eric's suggestions
Diffstat (limited to 'src/distutils2/command')
| -rw-r--r-- | src/distutils2/command/install.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/distutils2/command/install.py b/src/distutils2/command/install.py index 4f0ccc3..be9eefb 100644 --- a/src/distutils2/command/install.py +++ b/src/distutils2/command/install.py @@ -79,7 +79,7 @@ class install(Command): ('record=', None, "filename in which to record list of installed files"), - + # .dist-info related arguments, read by install_dist_info ('no-distinfo', None, 'do not create a .dist-info directory'), ('distinfo-dir=', None, @@ -170,7 +170,7 @@ class install(Command): #self.install_info = None self.record = None - + # .dist-info related options self.no_distinfo = None self.distinfo_dir = None @@ -323,7 +323,7 @@ class install(Command): # Punt on doc directories for now -- after all, we're punting on # documentation completely! - + if self.no_distinfo is None: self.no_distinfo = False |
