Skip to content

Commit

Permalink
supervisorctl: user expansion on config filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
darkone23 committed Oct 12, 2013
1 parent a20d546 commit 1dbdd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/web_infrastructure/supervisorctl
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main():
supervisorctl_args = [ module.get_bin_path('supervisorctl', True) ]

if config:
supervisorctl_args.extend(['-c', config])
supervisorctl_args.extend(['-c', os.path.expanduser(config)])
if server_url:
supervisorctl_args.extend(['-s', server_url])
if username:
Expand Down

0 comments on commit 1dbdd9d

Please sign in to comment.