xend: Replace stray tab-indent with space-indent
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 2 Jul 2008 08:42:37 +0000 (09:42 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 2 Jul 2008 08:42:37 +0000 (09:42 +0100)
Signed-off-by: Masaki Kanno <kanno.masaki@jp.fujitsu.com>
tools/python/xen/xend/XendConfig.py
tools/python/xen/xend/image.py
tools/python/xen/xend/osdep.py

index d31783f9a994bbcc644f2881af26ac842e077556..fa6031554cb6dcee56acfe2f75ebfa1684009f3c 100644 (file)
@@ -1762,7 +1762,7 @@ class XendConfig(dict):
         return self['HVM_boot_policy'] != ''
 
     def target(self):
-       return self['target']
+        return self['target']
 
     def image_type(self):
         stored_type = self['platform'].get('image_type')
index ccebcfc0339b66c5ecee7b77e7441ad929cc9ab5..615e56da0fec85bf55bac644c651f13a10bea483 100644 (file)
@@ -214,7 +214,7 @@ class ImageHandler:
         method is called before any devices are set up."""
         
         domid = self.vm.getDomid()
-       
+        
         # Delete left-over pipes
         try:
             os.unlink('/var/run/tap/qemu-read-%d' % domid)
index 6d2f81dae801bb6d774197e05613190b74552f65..b2d310064d2687649f91111ee7647b82875abc68 100644 (file)
@@ -67,11 +67,11 @@ def _solaris_balloon_stat(label):
     BLN_IOCTL_LOW = 0x42410003
     BLN_IOCTL_HIGH = 0x42410004
     BLN_IOCTL_LIMIT = 0x42410005
-    label_to_ioctl = { 'Current allocation'    : BLN_IOCTL_CURRENT,
-                       'Requested target'      : BLN_IOCTL_TARGET,
-                       'Low-mem balloon'       : BLN_IOCTL_LOW,
-                       'High-mem balloon'      : BLN_IOCTL_HIGH,
-                       'Xen hard limit'        : BLN_IOCTL_LIMIT }
+    label_to_ioctl = { 'Current allocation' : BLN_IOCTL_CURRENT,
+                       'Requested target'   : BLN_IOCTL_TARGET,
+                       'Low-mem balloon'    : BLN_IOCTL_LOW,
+                       'High-mem balloon'   : BLN_IOCTL_HIGH,
+                       'Xen hard limit'     : BLN_IOCTL_LIMIT }
 
     f = file(DEV_XEN_BALLOON, 'r')
     try: