diff options
author | ThiƩbaud Weksteen | 2015-06-30 14:58:18 -0700 |
---|---|---|
committer | Linus Torvalds | 2015-06-30 19:44:58 -0700 |
commit | 6ad18b73317714e7d0fad08ee78365ecc817e923 (patch) | |
tree | 563331af84bf2909ce98eabc630bb9ad37db3f0e /scripts/gdb/linux/utils.py | |
parent | a2e73c480494101f5f6932b6904acb15c44180ee (diff) |
scripts/gdb: fix PEP8 compliance
Signed-off-by: ThiƩbaud Weksteen <thiebaud@weksteen.fr>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/gdb/linux/utils.py')
-rw-r--r-- | scripts/gdb/linux/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gdb/linux/utils.py b/scripts/gdb/linux/utils.py index d7ff3a39b672..0893b326a28b 100644 --- a/scripts/gdb/linux/utils.py +++ b/scripts/gdb/linux/utils.py @@ -151,6 +151,6 @@ def get_gdbserver_type(): gdbserver_type = GDBSERVER_QEMU elif probe_kgdb(): gdbserver_type = GDBSERVER_KGDB - if not gdbserver_type is None and hasattr(gdb, 'events'): + if gdbserver_type is not None and hasattr(gdb, 'events'): gdb.events.exited.connect(exit_handler) return gdbserver_type |