diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-11-07 22:44:40 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-11-07 22:44:40 +0000 |
| commit | 7ae5975718eb57d333b50684325f612b00209d1f (patch) | |
| tree | b72c0b9932d15f84c79686433c4ccae0728583cb | |
| parent | f3bdda1e966c3e873d063683191e14bff67d764d (diff) | |
Fix thinko.
| -rwxr-xr-x | cdist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -114,11 +114,11 @@ def log(m): def copytree(a, b): log('copy %s -> %s' % (a, b)) - os.command('scp -r %s %s' % (a, b)) + os.system('scp -r %s %s' % (a, b)) def copyfile(a, b): log('copy %s -> %s' % (a, b)) - os.command('scp %s %s' % (a, b)) + os.system('scp %s %s' % (a, b)) def rmdir(a): log('remove %s' % a) |
