summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/command/install_data.py')
-rw-r--r--Lib/distutils/command/install_data.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py
index cb11371..ec78ce3 100644
--- a/Lib/distutils/command/install_data.py
+++ b/Lib/distutils/command/install_data.py
@@ -12,7 +12,7 @@ from types import StringType
from distutils.core import Command
from distutils.util import change_root, convert_path
-class install_data (Command):
+class install_data(Command):
description = "install data files"
@@ -27,12 +27,11 @@ class install_data (Command):
boolean_options = ['force']
- def initialize_options (self):
+ def initialize_options(self):
self.install_dir = None
self.outfiles = []
self.root = None
self.force = 0
-
self.data_files = self.distribution.data_files
self.warn_dir = 1
@@ -43,7 +42,7 @@ class install_data (Command):
('force', 'force'),
)
- def run (self):
+ def run(self):
self.mkpath(self.install_dir)
for f in self.data_files:
if type(f) is StringType:
@@ -76,8 +75,8 @@ class install_data (Command):
(out, _) = self.copy_file(data, dir)
self.outfiles.append(out)
- def get_inputs (self):
+ def get_inputs(self):
return self.data_files or []
- def get_outputs (self):
+ def get_outputs(self):
return self.outfiles