From 8494d6e37460cb26dc8fc8cc90677350d83d47de Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 16 Nov 2010 20:39:53 -0500 Subject: [PATCH] Use parsed args in abcplay.py as the list of files. --- posts/abcplay/abcplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/abcplay/abcplay.py b/posts/abcplay/abcplay.py index 2083edd..c8a40e9 100755 --- a/posts/abcplay/abcplay.py +++ b/posts/abcplay/abcplay.py @@ -117,6 +117,6 @@ if __name__ == '__main__': p = ABCPlayer() try: - p.play_files(sys.argv[1:]) + p.play_files(args) finally: p.cleanup() -- 2.26.2