Bug 998946 - DOC: Need to replace ')' with ',' in params.VM(...)
Summary: DOC: Need to replace ')' with ',' in params.VM(...)
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Enterprise Virtualization Manager
Classification: Red Hat
Component: Documentation
Version: 3.3.0
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
: ---
Assignee: Andrew Burden
QA Contact: ecs-bugs
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-08-20 12:04 UTC by Meital Bourvine
Modified: 2014-06-18 08:42 UTC (History)
7 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed:
oVirt Team: ---
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Meital Bourvine 2013-08-20 12:04:00 UTC
Description of problem:
After template=vm_template should be a comma and not ')'.

Link:
https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Virtualization/3.2/html/Developer_Guide/Example_Creating_a_Virtual_Machine_using_Python.html


Actual results:
vm_params = params.VM(name=vm_name,
                         memory=vm_memory,
                         cluster=vm_cluster,
                         template=vm_template)
                         os=vm_os)

Expected results:
vm_params = params.VM(name=vm_name,
                         memory=vm_memory,
                         cluster=vm_cluster,
                         template=vm_template,
                         os=vm_os)

Comment 1 Andrew Burden 2013-10-11 04:48:22 UTC
Topic changed: 
Closing parenthesis changed to comma. Now reads:

    vm_params = params.VM(name=vm_name,
                         memory=vm_memory,
                         cluster=vm_cluster,
                         template=vm_template,
                         os=vm_os)

Change can be viewed here:
http://documentation-devel.engineering.redhat.com/docs/en-US/Red_Hat_Enterprise_Virtualization/3.3/html/Developer_Guide/Example_Creating_a_Virtual_Machine_using_Python.html


Note You need to log in before you can comment on or make changes to this bug.