Fix source file context formatting

This commit is contained in:
Derek Parker 2015-06-25 07:40:18 -05:00
parent 5c29417348
commit 4d8f5659ac

@ -503,7 +503,7 @@ func printcontext(state *api.DebuggerState) error {
arrow = "=>"
}
context = append(context, fmt.Sprintf("\033[34m%s %d\033[0m: %s", arrow, i, line))
context = append(context, fmt.Sprintf("\033[34m%s %d\033[0m:\t%s", arrow, i, line))
}
fmt.Println(strings.Join(context, ""))