diff options
author | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2016-10-01 21:46:34 +0000 |
---|---|---|
committer | gasperfele@fri1.uni-lj.si <gasperfele@fri1.uni-lj.si@5cf9fbd1-b2bc-434c-b4b7-e852f4f63414> | 2016-10-01 21:46:34 +0000 |
commit | fa8934667ad8eae30c81081bbaa868b227c119ed (patch) | |
tree | d2a69178cfb693c0da0ffbefaff2da70a64f52f5 /kpov_judge/tasks/copy_rename_100_files | |
parent | 7210b74d6241a4264532aaaa2e1d771eaca4e073 (diff) |
added a global_params parameter to prepare_disks so that the task_name, username and task_url are pre-entered on the arbiters
git-svn-id: https://svn.lusy.fri.uni-lj.si/kpov-public-svn/kpov-public@351 5cf9fbd1-b2bc-434c-b4b7-e852f4f63414
Diffstat (limited to 'kpov_judge/tasks/copy_rename_100_files')
-rw-r--r-- | kpov_judge/tasks/copy_rename_100_files/task.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpov_judge/tasks/copy_rename_100_files/task.py b/kpov_judge/tasks/copy_rename_100_files/task.py index 457e57d..2c3700f 100644 --- a/kpov_judge/tasks/copy_rename_100_files/task.py +++ b/kpov_judge/tasks/copy_rename_100_files/task.py @@ -73,7 +73,7 @@ params_meta = { } def task(host, folder): - import pxssh + from pexpect import pxssh # ideally, this would be done using a SFTP client instead of pxssh target = pxssh.pxssh() @@ -123,5 +123,5 @@ def task_check(results, params): hints += ["wrong files"] return score, hints -def prepare_disks(templates, params): +def prepare_disks(templates, task_params, global_params): pass |