Skip to content

Commit 991c3e8

Browse files
authored
Minor bug (#36)
* Update proxy.py * Update setup.py
1 parent 324f163 commit 991c3e8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def run(self):
3333

3434
setuptools.setup(
3535
name='wavefront-cli',
36-
version='0.1.0',
36+
version='0.1.1',
3737
description='VMware Aria Operations for Applications CLI Utility.',
3838
long_description=long_description,
3939
url='https://github.com/wavefrontHQ/wavefront-cli',

wavefront_cli/lib/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def configure_proxy(url, wavefront_api_token, csp_api_token=None,
114114
if csp_api_token:
115115
# replace csp api token
116116
cmd = ('sed', '-i', '-e',
117-
f'/#cspAPIToken=/c\tcspAPIToken={csp_api_token})',
117+
f'/#cspAPIToken=/c\tcspAPIToken={csp_api_token}',
118118
'/etc/wavefront/wavefront-proxy/wavefront.conf')
119119
ret_code = system.run_cmd(cmd)
120120
if ret_code > 0:

0 commit comments

Comments
 (0)