Giter Site home page Giter Site logo

mad2's People

Contributors

mfiers avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

pombreda 0mician

mad2's Issues

Filenames with spaces are splitted when read from stdin.

From 183251f52917ec8ed234b0b247a05e76db442151 Mon Sep 17 00:00:00 2001
From: Gert Hulselmans <[email protected]>
Date: Fri, 20 Sep 2013 19:57:42 +0200
Subject: [PATCH] When reading filenames from standard input, split on
 newline.

When reading filenames from standard input, split on newline instead
of all kind of blank spaces like spaces so filenames with spaces
will work.

---
 mad2/util.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mad2/util.py b/mad2/util.py
index 27e8864..0d9b500 100644
--- a/mad2/util.py
+++ b/mad2/util.py
@@ -33,7 +33,7 @@ def get_filenames(args):
         #nothing in args - see if there is something on stdin
         filenames.extend(
                 [demad.sub(r'\1', x)
-                 for x in sys.stdin.read().split()])
+                 for x in sys.stdin.read().split('\n') if x != '' ])

     filenames = sorted(list(set(filenames)))
     return filenames
-- 
1.7.9.5

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.