From: <as...@us...> - 2009-08-24 03:21:20
|
Revision: 7549 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7549&view=rev Author: astraw Date: 2009-08-24 03:21:12 +0000 (Mon, 24 Aug 2009) Log Message: ----------- buildbot: set file permissions on files to upload Modified Paths: -------------- trunk/matplotlib/test/_buildbot_test_postmortem.py Modified: trunk/matplotlib/test/_buildbot_test_postmortem.py =================================================================== --- trunk/matplotlib/test/_buildbot_test_postmortem.py 2009-08-24 02:37:21 UTC (rev 7548) +++ trunk/matplotlib/test/_buildbot_test_postmortem.py 2009-08-24 03:21:12 UTC (rev 7549) @@ -102,3 +102,8 @@ os.path.join(this_targetdir,'actual.png') ) shutil.copy( os.path.join(root,savedresults_dir,testclass,fname), os.path.join(this_targetdir,'absdiff.png') ) + + os.chmod(this_targetdir,0755) + os.chmod(os.path.join(this_targetdir,'baseline.png'),0744) + os.chmod(os.path.join(this_targetdir,'actual.png'),0744) + os.chmod(os.path.join(this_targetdir,'absdiff.png'),0744) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |