python: PEP 8: miscellaneous indentation fixes

Small fixes for few remaining indentation issues.

No behaviour changes.
This commit is contained in:
Pino Toscano
2016-05-04 15:18:21 +02:00
parent 6e34396661
commit 845d518b8b
3 changed files with 4 additions and 4 deletions

View File

@@ -58,5 +58,4 @@ This package contains the Python bindings for libguestfs.
libraries=['guestfs'],
define_macros=[('GUESTFS_PRIVATE', '1')],
)
]
)
])

View File

@@ -40,7 +40,7 @@ class Test420LogMessages(unittest.TestCase):
# Register an event callback for all log messages.
events = guestfs.EVENT_APPLIANCE | guestfs.EVENT_LIBRARY \
| guestfs.EVENT_WARNING | guestfs.EVENT_TRACE
| guestfs.EVENT_WARNING | guestfs.EVENT_TRACE
g.set_event_callback(log_callback, events)
# Now make sure we see some messages.

View File

@@ -29,7 +29,8 @@ import guestfs
from .tests_helper import *
@skipUnlessArchMatches("(i.86|x86_64)") # If the architecture doesn't support IDE, skip the test.
# If the architecture doesn't support IDE, skip the test.
@skipUnlessArchMatches("(i.86|x86_64)")
@skipUnlessGuestfsBackendIs('libvirt')
@skipUnlessLibvirtHasCPointer()
class Test820RHBZ912499(unittest.TestCase):