Skip to content

Commit b8019e2

Browse files
author
Gabriel Monroy
committed
Merge pull request #213 from opdemand/update-docs
Update docs and remove line break from command output
2 parents daca4aa + 24d6aa7 commit b8019e2

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
@@ -1046,15 +1046,15 @@ def formations_create(self, args):
10461046
if response.status_code == requests.codes.created: # @UndefinedVariable
10471047
data = response.json()
10481048
formation = data['id']
1049-
print("done, created {}\n".format(formation))
1049+
print("done, created {}".format(formation))
10501050
if flavor:
10511051
layer = args.get('--layer') or 'runtime'
10521052
self.layers_create({'<formation>': formation, '<id>': layer,
10531053
'<flavor>': flavor, '--proxy': True, '--runtime': True})
10541054
print('\nUse `deis nodes:scale {formation} {layer}=1` '
10551055
'to scale a basic formation'.format(**locals()))
10561056
else:
1057-
print('See `deis help layers:create` to begin '
1057+
print('\nSee `deis help layers:create` to begin '
10581058
'building your formation'.format(**locals()))
10591059
else:
10601060
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)