# HG changeset patch # User Catherine Wise # Date 1431989938 -36000 # Node ID d25b82c3276f2c6f611f3f71e3842c49012e0e07 # Parent 05ce187da48a37a38aae4e5e96af9b77944167cf Print a little less :) mostly working now!!! diff -r 05ce187da48a -r d25b82c3276f TrustStoreGalaxyBrowse.py --- a/TrustStoreGalaxyBrowse.py Mon May 18 16:14:32 2015 +1000 +++ b/TrustStoreGalaxyBrowse.py Tue May 19 08:58:58 2015 +1000 @@ -170,7 +170,7 @@ print("Path not found: " + path) print("In root: " + str(root)) else: - print("Downloading file..." + str(locations)) + print("Downloading file..." + ", ".join([loc.name for loc in locations])) for location in locations: filename = "".join(c in SAFE_CHARS and c or '-' for c in location.name) extension = os.path.splitext(filename)[1]