File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/DIRAC/WorkloadManagementSystem/JobWrapper Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1616import glob
1717import json
1818import os
19- from pathlib import Path
2019import re
2120import shutil
2221import stat
2322import sys
2423import tarfile
2524import threading
2625import time
26+ from pathlib import Path
2727from urllib .parse import unquote
2828
2929import DIRAC
3030from DIRAC import S_ERROR , S_OK , gConfig , gLogger
3131from DIRAC .AccountingSystem .Client .Types .Job import Job as AccountingJob
32-
3332from DIRAC .ConfigurationSystem .Client .Helpers .Operations import Operations
3433from DIRAC .ConfigurationSystem .Client .Helpers .Registry import getVOForGroup
3534from DIRAC .Core .Utilities import DEncode , DErrno , List
@@ -1021,7 +1020,7 @@ def __resolveOutputSandboxFiles(self, outputSandbox):
10211020
10221021 for i in outputSandbox :
10231022 if i not in okFiles :
1024- if not f"{ i } .tar" in okFiles :
1023+ if f"{ i } .tar" not in okFiles :
10251024 if not re .search (r"\*" , i ):
10261025 if i not in missing :
10271026 missing .append (i )
You can’t perform that action at this time.
0 commit comments