Skip to content

Commit

Permalink
Merge pull request #49 from vvb/misc_fix
Browse files Browse the repository at this point in the history
fixing print statement
  • Loading branch information
vvb committed May 25, 2016
2 parents 9d5ef23 + 8171634 commit 710c78d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/create_sp_from_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import print_function
from connection.info import ucs_login, ucs_logout

handle = None
Expand Down Expand Up @@ -55,7 +56,7 @@ def main():
mo_list = create_sp_from_template()
if mo_list:
for mo in mo_list:
print mo.dn
print(mo.dn)

# ###########################################
# Delete_sp_created_from_template
Expand Down

0 comments on commit 710c78d

Please sign in to comment.