pvl.args.apply_file: support -
authorTero Marttila <terom@paivola.fi>
Mon, 16 Dec 2013 15:25:15 +0200
changeset 21 559a6ce73f40
parent 20 451eba1aab57
child 22 3e93880d3a40
pvl.args.apply_file: support -
pvl/args.py
--- a/pvl/args.py	Mon Nov 04 19:45:55 2013 +0200
+++ b/pvl/args.py	Mon Dec 16 15:25:15 2013 +0200
@@ -99,7 +99,7 @@
         Open unicode-enabled file from path, with - using stdio.
     """
 
-    if not path :
+    if not path or path == '-' :
         # use stdin/out based on mode
         stream, func = {
             'r':    (sys.stdin, codecs.getreader),