File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -201,12 +201,14 @@ def new(self,
201
201
'Please provide at least one attached directory to the job in either sync_directories param or single_copy_directories' )
202
202
203
203
for dir in sync_directories :
204
- self .__add_directory_to_job (directory = dir , mode = 'sync' )
204
+ job .__add_directory_to_job (directory = dir , mode = 'sync' )
205
205
206
206
for dir in single_copy_directories :
207
- self .__add_directory_to_job (directory = dir , mode = 'sync' )
207
+ job .__add_directory_to_job (directory = dir , mode = 'sync' )
208
208
209
- job .attached_directories_dict = {'attached_directories_list' : self .attached_directories }
209
+ job .attached_directories_dict = {
210
+ 'attached_directories_list' : job .attached_directories
211
+ }
210
212
211
213
endpoint = "/api/v1/project/{}/job/new" .format (self .client .project_string_id )
212
214
You can’t perform that action at this time.
0 commit comments