File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def run (self):
5252 self .warn ("setup script did not provide a directory for "
5353 "'%s' -- installing right in '%s'" %
5454 (f , self .install_dir ))
55- out = self .copy_file (f , self .install_dir )
55+ ( out , _ ) = self .copy_file (f , self .install_dir )
5656 self .outfiles .append (out )
5757 else :
5858 # it's a tuple with path to install to and a list of files
@@ -63,7 +63,7 @@ def run (self):
6363 dir = change_root (self .root , dir )
6464 self .mkpath (dir )
6565 for data in f [1 ]:
66- out = self .copy_file (data , dir )
66+ ( out , _ ) = self .copy_file (data , dir )
6767 self .outfiles .append (out )
6868
6969 def get_inputs (self ):
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def run (self):
4141
4242 self .mkpath (self .install_dir )
4343 for header in headers :
44- out = self .copy_file (header , self .install_dir )
44+ ( out , _ ) = self .copy_file (header , self .install_dir )
4545 self .outfiles .append (out )
4646
4747 def get_inputs (self ):
You can’t perform that action at this time.
0 commit comments