Skip to content

Commit

Permalink
Fix powershell typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Jun 13, 2019
1 parent ac48de6 commit 86957fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rezplugins/shell/powershell.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def resetenv(self, key, value, friends=None):
self._addline(self.setenv(key, value))

def alias(self, key, value):
self._addline("Set-Alias -Name %s -Value \"%s\"" % key, value)
self._addline("Set-Alias -Name %s -Value \"%s\"" % (key, value))

def comment(self, value):
for line in value.split('\n'):
Expand Down

0 comments on commit 86957fc

Please sign in to comment.