Browse Source

use FTP upload for 'anonymous'

[SVN r23870]
Aleksey Gurtovoy 22 years ago
parent
commit
af525a21e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/regression/xsl_reports/runner/collect_and_upload_logs.py

+ 1 - 1
tools/regression/xsl_reports/runner/collect_and_upload_logs.py

@@ -120,7 +120,7 @@ def collect_and_upload_logs(
     z.write( test_results_file, os.path.basename( test_results_file ) )
     z.close()
     
-    if user is None:
+    if user is None or user == 'anonymous':
         upload_to_ftp( tag, test_results_archive )
     else:
         upload_to_sourceforge( user, tag, test_results_archive )

粤ICP备19079148号