diff options
author | Greg Ward <gward@python.net> | 2000-10-14 04:06:40 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-10-14 04:06:40 (GMT) |
commit | fa9ff76aae32ecaae6b5409a410c10ff12116732 (patch) | |
tree | f5a19253ee0f6cc1e904bf1b0138b4c2ef1493c3 /Lib/distutils/command/install_data.py | |
parent | 4cd6f2ab807e0f3a23a059a407a08c5edad6bb98 (diff) | |
download | cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.zip cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.tar.gz cpython-fa9ff76aae32ecaae6b5409a410c10ff12116732.tar.bz2 |
Untabified.
Diffstat (limited to 'Lib/distutils/command/install_data.py')
-rw-r--r-- | Lib/distutils/command/install_data.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py index d9a4869..dba108a 100644 --- a/Lib/distutils/command/install_data.py +++ b/Lib/distutils/command/install_data.py @@ -38,10 +38,10 @@ class install_data (Command): def finalize_options (self): self.set_undefined_options('install', - ('install_data', 'install_dir'), - ('root', 'root'), + ('install_data', 'install_dir'), + ('root', 'root'), ('force', 'force'), - ) + ) def run (self): self.mkpath(self.install_dir) |