From bf8f467b02ac5669a59de7b21c693adf816452a3 Mon Sep 17 00:00:00 2001 From: Oz Linden Date: Thu, 6 Sep 2018 10:40:59 -0400 Subject: modify the path command progress message to show fully resolved src and dst paths --- indra/lib/python/indra/util/llmanifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/lib') 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 -- cgit v1.2.3