nova/bin
lzyeval ae1654bc59 PEP8 remove direct type comparisons
Fixes bug #910763

According to PEP8,
- Object type comparisons should always use isinstance() instead
      of comparing types directly.

        Yes: if isinstance(obj, int):

        No: if type(obj) is type(1):

      When checking if an object is a string, keep in mind that it might be a
      unicode string too! In Python 2.3, str and unicode have a common base
      class, basestring, so you can do:

        if isinstance(obj, basestring):

Change-Id: I7c0fdecf99872f5b8f72b2c2ed4f5c539c33def1
2012-01-03 11:12:42 +08:00
..
clear_rabbit_queues Added durable option for nova rabbit queues 2011-08-12 23:58:13 +00:00
instance-usage-audit Adds more usage data to Nova's usage notifications. 2011-10-12 19:11:14 +00:00
nova-ajax-console-proxy Merge "Stop nova-ajax-console-proxy configuring its own logging." 2011-11-12 17:30:16 +00:00
nova-all Add nova-all to run all services 2011-09-28 11:36:19 -07:00
nova-api Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-api-ec2 Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-api-metadata Separate metadata api into its own service 2011-11-15 13:27:58 -08:00
nova-api-os Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-compute Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-console fix typo 2011-08-18 11:28:02 -07:00
nova-dhcpbridge Remove useless flags declaration 2011-12-15 17:04:27 +01:00
nova-direct-api more cleanup of binaries per review 2011-08-18 10:55:39 -07:00
nova-logspool Brings some more files up to HACKING standards 2011-12-28 18:11:59 -08:00
nova-manage PEP8 remove direct type comparisons 2012-01-03 11:12:42 +08:00
nova-network Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-objectstore Add nova-all to run all services 2011-09-28 11:36:19 -07:00
nova-rootwrap A more secure root-wrapper alternative 2011-12-07 15:10:04 +01:00
nova-scheduler Fixed mistake on mergew 2011-08-19 13:31:54 -07:00
nova-spoolsentry Brings some more files up to HACKING standards 2011-12-28 18:11:59 -08:00
nova-vncproxy Add nova-all to run all services 2011-09-28 11:36:19 -07:00
nova-volume Merged with trunkw 2011-08-19 13:25:49 -07:00
nova-vsa VSA code redesign. Drive types completely replaced by Volume types 2011-08-25 18:38:35 -07:00
stack Bug #897054: stack crashes with AttributeError on e.reason if the server returns an error 2011-11-27 20:14:40 -08:00