Browse Source

Merge pull request #2549 from karalabe/geth-tester-text-templates

cmd/geth: use text/templates in the tester, not html
Péter Szilágyi 9 years ago
parent
commit
d89e57ea8d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmd/geth/run_test.go

+ 1 - 1
cmd/geth/run_test.go

@@ -20,7 +20,6 @@ import (
 	"bufio"
 	"bytes"
 	"fmt"
-	"html/template"
 	"io"
 	"io/ioutil"
 	"os"
@@ -28,6 +27,7 @@ import (
 	"regexp"
 	"sync"
 	"testing"
+	"text/template"
 	"time"
 )