1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Fixed typo

This commit is contained in:
Valery Sinelnikov 2022-04-22 19:11:43 +04:00 committed by Evgeny Sinelnikov
parent b869573f31
commit 856eecf708

View File

@ -129,6 +129,6 @@ def install_script(storage_script_entry, script_path, access_permissions):
dir_path = script_path + '/' + script_file.split('/')[-1] + '.arg'
dir_arg = Path(dir_path)
dir_arg.mkdir(parents=True, exist_ok=True)
file_arg = open(dir_path + '/agr', 'w')
file_arg = open(dir_path + '/arg', 'w')
file_arg.write(storage_script_entry.arg)
file_arg.close()