Skip to content

Commit

Permalink
Merge pull request #502 from marvink87/master
Browse files Browse the repository at this point in the history
Fixed issue #480 with home on different drive
  • Loading branch information
kemayo authored Jan 11, 2017
2 parents eef0a87 + fd77b9f commit 2683316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def run(self):
if sublime.platform() == 'windows':
shell = True
if 'HOME' not in env:
env[str('HOME')] = str(env['USERPROFILE'])
env[str('HOME')] = str(env['HOMEDRIVE']) + str(env['HOMEPATH'])

# universal_newlines seems to break `log` in python3
proc = subprocess.Popen(
Expand Down

0 comments on commit 2683316

Please sign in to comment.