runtime: fix tab/space inconsistency in runtime-gdb.py

Change-Id: I78c6198eb909e679cf0f776b77dda52211bfd347
Reviewed-on: https://go-review.googlesource.com/45133
Run-TryBot: Austin Clements <austin@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
diff --git a/src/runtime/runtime-gdb.py b/src/runtime/runtime-gdb.py
index 26f36b5..dd1f79b 100644
--- a/src/runtime/runtime-gdb.py
+++ b/src/runtime/runtime-gdb.py
@@ -436,7 +436,7 @@
 	for thr in gdb.selected_inferior().threads():
 		if thr.ptid[1] == m['procid']:
 			break
-        else:
+	else:
 		return None, None
 	# Get scheduler state from the G's OS thread state.
 	curthr = gdb.selected_thread()