Skip to content

Commit

Permalink
Correct flag import error
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Lefranc committed Mar 11, 2016
1 parent f625099 commit 5a9ce91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions repmgr.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
package main

import (
"cmd/asm/internal/flags"
"fmt"
"io/ioutil"
"log"
Expand Down Expand Up @@ -109,7 +108,7 @@ const (
func main() {
var errLog = mysql.Logger(log.New(ioutil.Discard, "", 0))
mysql.SetLogger(errLog)
flags.Parse()
flag.Parse()
if version == true {
fmt.Println("MariaDB Replication Manager version", repmgrVersion)
}
Expand Down

0 comments on commit 5a9ce91

Please sign in to comment.