Skip to content

Commit

Permalink
Minor bug (#36)
Browse files Browse the repository at this point in the history
* Update proxy.py

* Update setup.py
  • Loading branch information
laullon authored Jul 3, 2023
1 parent 324f163 commit 991c3e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def run(self):

setuptools.setup(
name='wavefront-cli',
version='0.1.0',
version='0.1.1',
description='VMware Aria Operations for Applications CLI Utility.',
long_description=long_description,
url='https://github.com/wavefrontHQ/wavefront-cli',
Expand Down
2 changes: 1 addition & 1 deletion wavefront_cli/lib/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def configure_proxy(url, wavefront_api_token, csp_api_token=None,
if csp_api_token:
# replace csp api token
cmd = ('sed', '-i', '-e',
f'/#cspAPIToken=/c\tcspAPIToken={csp_api_token})',
f'/#cspAPIToken=/c\tcspAPIToken={csp_api_token}',
'/etc/wavefront/wavefront-proxy/wavefront.conf')
ret_code = system.run_cmd(cmd)
if ret_code > 0:
Expand Down

0 comments on commit 991c3e8

Please sign in to comment.