IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Sfoglia il codice sorgente

Improved CopyStep

tags/0.92
parent
commit
4eae79f6ab
1 ha cambiato i file con 2 aggiunte e 4 eliminazioni
  1. +2
    -4
      steps.py

+ 2
- 4
steps.py Vedi File

@@ -60,10 +60,8 @@ class CopyStep(object):
lst = [ self.spec ] \
if not isinstance(self.spec[0], list) \
else self.spec
for a in lst:
source, target = a
if target.startswith('/'):
target = target[1:]
for (source, target) in lst:
target = target.strip('/')
shutil.copyfile(os.path.join(kwargs['args'].focker_dir, source),
os.path.join(path, target))


Loading…
Annulla
Salva