Fix up start/end dates and display them in a more friendly way.
[arvados.git] / sdk / python / bin / arv-get
index 1025b8c6267bf607c6cc277ec787dd5050195503..30beedc2e762a7bf1cff35436adb5de01b3b4bda 100755 (executable)
@@ -124,14 +124,21 @@ if not get_prefix:
                 logger.error('Local file %s already exists' % args.destination)
                 sys.exit(1)
             with open(args.destination, 'wb') as f:
-                f.write(arvados.Keep.get(collection))
+                try:
+                    c = arvados.api('v1').collections().get(
+                        uuid=collection).execute()
+                    manifest = c['manifest_text']
+                except Exception as e:
+                    logging.warning(
+                        "API lookup failed for collection %s (%s: %s)" %
+                        (collection, type(e), str(e)))
+                    manifest = arvados.Keep.get(collection)
+                f.write(manifest)
         sys.exit(0)
     except arvados.errors.NotFoundError as e:
         logger.error(e)
         sys.exit(1)
 
-get_prefix = get_prefix.replace(' ', '\\040')
-
 reader = arvados.CollectionReader(collection)
 
 # Scan the collection. Make an array of (stream, file, local