Skip to content

Commit 24d6aa7

Browse files
author
Gabriel Monroy
committed
update docs, and remove line break from command output
1 parent ff9ecab commit 24d6aa7

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

client/deis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,15 +1021,15 @@ def formations_create(self, args):
10211021
if response.status_code == requests.codes.created: # @UndefinedVariable
10221022
data = response.json()
10231023
formation = data['id']
1024-
print("done, created {}\n".format(formation))
1024+
print("done, created {}".format(formation))
10251025
if flavor:
10261026
layer = args.get('--layer') or 'runtime'
10271027
self.layers_create({'<formation>': formation, '<id>': layer,
10281028
'<flavor>': flavor, '--proxy': True, '--runtime': True})
10291029
print('\nUse `deis nodes:scale {formation} {layer}=1` '
10301030
'to scale a basic formation'.format(**locals()))
10311031
else:
1032-
print('See `deis help layers:create` to begin '
1032+
print('\nSee `deis help layers:create` to begin '
10331033
'building your formation'.format(**locals()))
10341034
else:
10351035
raise ResponseError(response)

docs/gettingstarted/installation.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ up to one node.
120120
121121
Use `deis nodes:scale dev runtime=1` to scale a basic formation
122122
123-
$ deis nodes:scale dev runtime=2
123+
$ deis nodes:scale dev runtime=1
124124
Scaling nodes... but first, coffee!
125125
...done in 251s
126126
@@ -162,9 +162,6 @@ To learn more, use ``deis help`` or browse `the documentation`_.
162162
Using Node.js version: 0.10.17
163163
Using npm version: 1.2.30
164164
...
165-
-----> Building runtime environment
166-
-----> Discovering process types
167-
Procfile declares types -> web
168165
169166
-----> Compiled slug size: 4.7 MB
170167
Launching... done, v2

0 commit comments

Comments
 (0)