Skip to content

Commit

Permalink
Merge pull request ehamiter#61 from tmosmant/master
Browse files Browse the repository at this point in the history
Mark @ as safe for username
  • Loading branch information
ehamiter authored Mar 8, 2018
2 parents 26e7c31 + cd408fd commit 9847e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion githubinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def run(self, edit, copyonly=False, permalink=False, mode="blob", branch=None, o
full_link = repo_link + "%s/%s%s/%s#%s" % \
(mode, target, new_git_path, file_name, lines)

full_link = quote(full_link, safe=':/#')
full_link = quote(full_link, safe=':/#@')

sublime.set_clipboard(full_link)
sublime.status_message("Copied %s to clipboard." % full_link)
Expand Down

0 comments on commit 9847e3d

Please sign in to comment.