diff options
author | Oz Linden <oz@lindenlab.com> | 2018-09-06 10:40:59 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2018-09-06 10:40:59 -0400 |
commit | bf8f467b02ac5669a59de7b21c693adf816452a3 (patch) | |
tree | 2ea93ad013456060d68ac0293c7245df33cd762f /indra/lib | |
parent | 49c483eeb350f3620f26ce933007c3d4e9f66d4f (diff) |
modify the path command progress message to show fully resolved src and dst paths
Diffstat (limited to 'indra/lib')
-rwxr-xr-x | indra/lib/python/indra/util/llmanifest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py index c4dcad51b7..d51718c0a7 100755 --- a/indra/lib/python/indra/util/llmanifest.py +++ b/indra/lib/python/indra/util/llmanifest.py @@ -775,13 +775,13 @@ class LLManifest(object): return self.path(os.path.join(path, file), file) def path(self, src, dst=None): - sys.stdout.write("Processing %s => %s ... " % (src, dst)) sys.stdout.flush() if src == None: raise ManifestError("No source file, dst is " + dst) if dst == None: dst = src dst = os.path.join(self.get_dst_prefix(), dst) + sys.stdout.write("Processing %s => %s ... " % (src, dst)) def try_path(src): # expand globs |