Skip to content

Commit

Permalink
Fix mismatched quotes
Browse files Browse the repository at this point in the history
References #844
  • Loading branch information
tpope committed Nov 14, 2016
1 parent b3a8be6 commit b754bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/fugitive.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2321,7 +2321,7 @@ function! s:Browse(bang,line1,count,...) abort
if empty(url) && raw ==# '.'
call s:throw("Instaweb failed to start")
elseif empty(url)
call s:throw('"'.remote."' is not a supported remote")
call s:throw("'".remote."' is not a supported remote")
endif

let url = s:gsub(url, '[ <>]', '\="%".printf("%02X",char2nr(submatch(0)))')
Expand Down

0 comments on commit b754bc2

Please sign in to comment.