From tashi-commits-return-353-apmail-incubator-tashi-commits-archive=incubator.apache.org@incubator.apache.org Thu Jan 26 22:33:17 2012 Return-Path: X-Original-To: apmail-incubator-tashi-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-tashi-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AAB3A9033 for ; Thu, 26 Jan 2012 22:33:17 +0000 (UTC) Received: (qmail 3561 invoked by uid 500); 26 Jan 2012 22:33:17 -0000 Delivered-To: apmail-incubator-tashi-commits-archive@incubator.apache.org Received: (qmail 3539 invoked by uid 500); 26 Jan 2012 22:33:17 -0000 Mailing-List: contact tashi-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: tashi-dev@incubator.apache.org Delivered-To: mailing list tashi-commits@incubator.apache.org Received: (qmail 3531 invoked by uid 99); 26 Jan 2012 22:33:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jan 2012 22:33:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_FRT_STOCK2 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jan 2012 22:33:14 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E3D8D23888E7; Thu, 26 Jan 2012 22:32:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1236420 - /incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py Date: Thu, 26 Jan 2012 22:32:53 -0000 To: tashi-commits@incubator.apache.org From: stroucki@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120126223253.E3D8D23888E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stroucki Date: Thu Jan 26 22:32:53 2012 New Revision: 1236420 URL: http://svn.apache.org/viewvc?rev=1236420&view=rev Log: tashi-client: print a nicer return message on createVm Modified: incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py Modified: incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py URL: http://svn.apache.org/viewvc/incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py?rev=1236420&r1=1236419&r2=1236420&view=diff ============================================================================== --- incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py (original) +++ incubator/tashi/branches/stroucki-accounting/src/tashi/client/tashi-client.py Thu Jan 26 22:32:53 2012 @@ -211,6 +211,7 @@ extraViews = { 'getSlots': (getSlots, None), 'getImages': (None, ['id', 'imageName', 'imageSize']), 'copyImage': (None, None), +'createVm': (None, ['id', 'hostId', 'name', 'user', 'state', 'disk', 'memory', 'cores']), 'createMany': (createMany, ['id', 'hostId', 'name', 'user', 'state', 'disk', 'memory', 'cores']), 'destroyMany': (destroyMany, None), 'getVmLayout': (getVmLayout, ['id', 'name', 'state', 'instances', 'usedMemory', 'memory', 'usedCores', 'cores']), @@ -575,7 +576,8 @@ def main(): if (type(res) == types.ListType): makeTable(res, keys) else: - pprint(res) + makeTable([res], keys) + except IOError: pass except Exception, e: