From: W. Trevor King Date: Wed, 17 Nov 2010 01:39:53 +0000 (-0500) Subject: Use parsed args in abcplay.py as the list of files. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8494d6e37460cb26dc8fc8cc90677350d83d47de;p=blog.git Use parsed args in abcplay.py as the list of files. --- 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()