Skip to content

Commit a32a87d

Browse files
committed
don't use fmt
1 parent 3640fb0 commit a32a87d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

parser.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package css
22

33
import (
4-
"fmt"
54
"log"
65

76
"github.com/gorilla/css/scanner"
@@ -128,7 +127,7 @@ func Parse(csstext string) *CSSStyleSheet {
128127
context.NowRuleType = COUNTER_STYLE_RULE
129128
parseRule(context, s, css)
130129
default:
131-
log.Println(fmt.Printf("Skip unsupported atrule: %s", token.Value))
130+
log.Printf("Skip unsupported atrule: %s", token.Value)
132131
skipRules(s)
133132
context.resetContextStyleRule()
134133
}

0 commit comments

Comments
 (0)