summaryrefslogtreecommitdiff
path: root/indra/lib
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2018-09-06 10:40:59 -0400
committerOz Linden <oz@lindenlab.com>2018-09-06 10:40:59 -0400
commitbf8f467b02ac5669a59de7b21c693adf816452a3 (patch)
tree2ea93ad013456060d68ac0293c7245df33cd762f /indra/lib
parent49c483eeb350f3620f26ce933007c3d4e9f66d4f (diff)
modify the path command progress message to show fully resolved src and dst paths
Diffstat (limited to 'indra/lib')
-rwxr-xr-xindra/lib/python/indra/util/llmanifest.py2
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