Skip to content

Commit ce633e0

Browse files
author
Matthew Fisher
committed
Merge pull request #1768 from ngpestelos/fix-prepend-twice
fix(client): do not prepend the app name twice
2 parents a76bbd5 + dd0aeb0 commit ce633e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def apps_open(self, args):
582582
if response.status_code == requests.codes.ok: # @UndefinedVariable
583583
url = response.json()['url']
584584
# use the OS's default handler to open this URL
585-
webbrowser.open('http://{}.{}/'.format(app, url))
585+
webbrowser.open('http://{}/'.format(url))
586586
return url
587587
else:
588588
raise ResponseError(response)

0 commit comments

Comments
 (0)