Skip to content

Commit

Permalink
パスワードにエスケープ文字があってもログインができるように修正した
Browse files Browse the repository at this point in the history
パスワードにエスケープ文字があってもログインができるように修正した
  • Loading branch information
silenvx committed Jun 29, 2012
1 parent bd44499 commit e679f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/hatena.vim
Expand Up @@ -176,7 +176,7 @@ function! HatenaLogin(user)
return []
endif

let content = system(s:curl_cmd . ' ' . s:hatena_login_url . ' -d name=' . user . ' -d password=' . password . ' -d mode=enter -c "' . cookie_file . '"')
let content = system(s:curl_cmd . ' ' . s:hatena_login_url . ' -d name=' . user . ' -d password="' . password . '" -d mode=enter -c "' . cookie_file . '"')

call delete(tmpfile)

Expand Down

0 comments on commit e679f02

Please sign in to comment.