We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b141b commit 2c215e0Copy full SHA for 2c215e0
2 files changed
SoftLayer/CCI.py
@@ -242,6 +242,8 @@ def _generate_create_dict(
242
]
243
244
# disk 1 is reservered for swap
245
+ # XXX: enumerate(iterator, start=0) was added in 2.6. work around
246
+ # for 2.5 by adding 2 to the enumerated value
247
for dev_id, disk in enumerate(disks[1:]):
248
data['blockDevices'].append(
249
{
docs/cli/dev.rst
@@ -97,6 +97,7 @@ A minimal implementation for `sl example print` would look like this:
97
98
Which in turn, works like this:
99
::
100
+
101
$ sl example print
102
EXAMPLE!
103
$ sl example print -h
0 commit comments