]> git.donarmstrong.com Git - lilypond.git/commitdiff
* scripts/convert-ly.py: Do not test filename when processing
authorjanneke <janneke>
Tue, 20 Jan 2004 21:57:57 +0000 (21:57 +0000)
committerjanneke <janneke>
Tue, 20 Jan 2004 21:57:57 +0000 (21:57 +0000)
stdin.

ChangeLog
scripts/convert-ly.py

index c952238b38341c983c5cd139a06f6dda62273ccb..5aaba0f9e7c7f88b78ce3db9a60997bc236ede1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,9 @@
 
 2004-01-20  Jan Nieuwenhuizen  <janneke@gnu.org>
 
+       * scripts/convert-ly.py: Do not test filename when processing
+       stdin.
+
        * lily/axis-group-engraver.cc: Include warn.hh (compile fix).
 
 2004-01-20  Han-Wen Nienhuys   <hanwen@xs4all.nl>
index 1160607eb9e62547405262dc7e81c2c259ed30cd..02bafe9148af58400a02d70e20a28551936ae399 100644 (file)
@@ -1835,7 +1835,7 @@ identify ()
 for f in files:
        if f == '-':
                f = ''
-       if not os.path.isfile (f):
+       elif not os.path.isfile (f):
                continue
        try:
                do_one_file (f)