Browse Source

bug fix

[SVN r23687]
Aleksey Gurtovoy 22 years ago
parent
commit
7ec5803ba0
1 changed files with 2 additions and 3 deletions
  1. 2 3
      tools/regression/xsl_reports/report.py

+ 2 - 3
tools/regression/xsl_reports/report.py

@@ -233,9 +233,8 @@ def build_xsl_reports(
             , archive_name
             , archive_name
             )
             )
         
         
-        archive_path = os.path.join( results_dir, archive_name )
-        utils.sourceforge.upload( archive_path, upload_dir, user )
-        utils.sourceforge.untar( archive_path, user, background = True )
+        utils.sourceforge.upload( os.path.join( results_dir, archive_name ), upload_dir, user )
+        utils.sourceforge.untar( os.path.join( upload_dir, archive_name ), user, background = True )
 
 
 
 
 def accept_args( args ):
 def accept_args( args ):

粤ICP备19079148号