Message10122

Author sefas
Recipients sefas
Date 2015-06-17.08:26:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1434529618.21.0.891746185352.issue2370@psf.upfronthosting.co.za>
In-reply-to
Content
A problem appears when using 4 digits in os.makedirs in 2.5.2

The folder created by makedirs has not the good rights in jython 2.5.2 when using 4 digits 

result in 2.5.1 :
os.makedirs("threedigit", 755) --> drwxr-xr-x 2 adf users 48 2015-05-07 15:54 threedigit 
os.makedirs("fourdigit", 0755) --> drwxr-xr-x 2 adf users 48 2015-05-07 15:55 fourdigit 

result in 2.5.2 : 
os.makedirs("threedigit", 755) --> d-wxr----t 2 adf users 4096 May 7 15:46 threedigit 
os.makedirs("fourdigit", 0755) --> drwxr-xr-x 2 adf users 48 2015-05-07 15:55 fourdigit
History
Date User Action Args
2015-06-17 08:26:58sefassetrecipients: + sefas
2015-06-17 08:26:58sefassetmessageid: <1434529618.21.0.891746185352.issue2370@psf.upfronthosting.co.za>
2015-06-17 08:26:58sefaslinkissue2370 messages
2015-06-17 08:26:57sefascreate