Quotation marks don't work for Windows

Issue #52 resolved
Former user created an issue

sarge.run('git rev-list origin/master --since="1 hours ago"')

it returns 128 error because it does not see "" for "1 hours ago" How I can avoid this bug for Windows?

Comments (3)

  1. Vinay Sajip repo owner

    What happens if you do the following?

    sarge.run('git rev-list origin/master --since="1 hours ago"', posix=True)
    

  2. Log in to comment