develop
asamoukin 16 years ago
parent 4150d76dee
commit 113c6d7a74

@ -392,7 +392,10 @@ conjunction with the 'login' or 'logout'")
# Меняем владельца файлов
for fileCh in files:
if os.path.exists(fileCh):
os.chown(fileCh, uid,gid)
if os.path.islink(fileCh):
os.lchown(fileCh, uid, gid)
else:
os.chown(fileCh, uid,gid)
return True
else:
fileObj = cl_profile._file()

@ -105,7 +105,7 @@ class Data:
cl_remote_pw = {'mode':'w'}
# ip или имя домена (под управлением calculate-server)
cl_remote_host = {'mode':'w'}
cl_remote_host = {'mode':'w','value':''}
#ближайший стандартный размер изображения к текущему разрешению
hr_x11_standart = {}

Loading…
Cancel
Save