[ARVADOS] updated: 4a5adfa084b3c3a8e586df5ac0acc0b3fc6150db

git at public.curoverse.com git at public.curoverse.com
Mon Jul 27 10:36:47 EDT 2015


Summary of changes:
 sdk/python/bin/arv-get | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  4a5adfa084b3c3a8e586df5ac0acc0b3fc6150db (commit)
      from  753c1446ea70d70043be0913e52bb270d28ecded (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 4a5adfa084b3c3a8e586df5ac0acc0b3fc6150db
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Mon Jul 27 10:37:32 2015 -0400

    6593: Typo fix in KeyboardInterrupt handling.

diff --git a/sdk/python/bin/arv-get b/sdk/python/bin/arv-get
index 0d817e2..60d4bec 100755
--- a/sdk/python/bin/arv-get
+++ b/sdk/python/bin/arv-get
@@ -225,8 +225,8 @@ for s,f,outfilename in todo:
             sys.stderr.write("%s  %s/%s\n"
                              % (digestor.hexdigest(), s.name(), f.name()))
     except KeyboardInterrupt:
-        if outfile and (outfile.fileno() > 2) and (not outfile.closed()):
-            os.unlink(outfilename)
+        if outfile and (outfile.fileno() > 2) and not outfile.closed:
+            os.unlink(outfile.name)
         break
 
 if args.progress:

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list