Skip to content

Commit 67c7946

Browse files
committed
Typo fixes
1 parent f70556b commit 67c7946

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

docs/Server.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,7 @@ manager.create_server( server )
6363
```
6464

6565
Currently available Storage operating systems are the following UpCloud public templates:
66-
67-
```python
68-
# upcloud_api/tools.py
69-
7066
Valid Operating Systems cam be retrieved with 'manager.get_templates()'. More information on this method can be found in storage_mixin documentation.
71-
```
72-
7367

7468
Please refer to the [API documentation](https://www.upcloud.com/static/downloads/upcloud-apidoc-1.1.1.pdf) for the allowed Server attributes.
7569

test/json_data/server_create.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"address" : "virtio:0",
2727
"storage" : "01215a5a-c330-4565-81ca-0e0e22eac672",
2828
"storage_size" : 20,
29-
"storage_title" : "01000000-0000-4000-8000-000030060200 from template",
29+
"storage_title" : "Ubuntu 14.04 from template",
3030
"type" : "disk"
3131
},
3232
{

upcloud_api/cloud_manager/storage_mixin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ def get_storages(self, storage_type='normal'):
1919
Storage types: public, private, normal, backup, cdrom, template, favorite
2020
"""
2121
res = self.get_request('/storage/' + storage_type)
22-
print(res)
2322
return Storage._create_storage_objs(res['storages'], cloud_manager=self)
2423

2524
def get_templates(self):

0 commit comments

Comments
 (0)