gsteph / groove-dl

A Grooveshark song downloader in Python
http://gsteph.github.io/groove-dl/
120 stars 30 forks source link

whitespaces in sys.argv #7

Closed pausiert closed 12 years ago

pausiert commented 12 years ago

if you pass more than one word via command line without quotes just the first param is used ("python groove.py foo bar" will only search for foo may change a few lines like this:

    print entrystring
    init()
    getToken()
    m = 0
    input = " ".join(sys.argv[1:])
    s = getResultsFromSearch(input)

cheers

gsteph commented 12 years ago

Fixed in the last commit. Thanks for the report!