~ubuntu-branches/ubuntu/quantal/nova/quantal-security

« back to all changes in this revision

Viewing changes to plugins/xenserver/networking/etc/xensource/scripts/vif_rules.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandelman
  • Date: 2012-06-22 12:39:57 UTC
  • mfrom: (1.1.57)
  • Revision ID: package-import@ubuntu.com-20120622123957-hbzwg84nt9rqwg8r
Tags: 2012.2~f2~20120621.14517-0ubuntu1
[ Chuck Short ]
* New upstream version.

[ Adam Gandelman ]
* debian/rules: Temporarily disable test suite while blocking
  tests are investigated. 
* debian/patches/kombu_tests_timeout.patch: Dropped.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
 
126
126
if __name__ == "__main__":
127
127
    if len(sys.argv) < 3:
128
 
        print "usage: %s dom_id online|offline [vif]" % \
129
 
               os.path.basename(sys.argv[0])
 
128
        print ("usage: %s dom_id online|offline [vif]" %
 
129
               os.path.basename(sys.argv[0]))
130
130
        sys.exit(1)
131
131
    else:
132
132
        dom_id, command = sys.argv[1:3]