# | Line 2 | Line 2 | from crab_exceptions import * | |
---|---|---|
2 | from threading import RLock | |
3 | import common | |
4 | ||
5 | < | import os, shutil, string |
5 | > | import os, shutil, string, time |
6 | ||
7 | class WorkSpace: | |
8 | ||
# | Line 36 | Line 36 | class WorkSpace: | |
36 | os.mkdir(self._job_dir) | |
37 | os.mkdir(self._res_dir) | |
38 | os.mkdir(self._share_dir) | |
39 | + | |
40 | + | fileCODE1 = open(self._log_dir+"/.code","w") |
41 | + | fileCODE1.write(str(time.time())) |
42 | + | fileCODE1.close() |
43 | pass | |
44 | return | |
45 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |