mirror of https://github.com/pressly/goose.git
Changing Sprintf to Sprint if there is no formatting (#417)
parent
9823e00b3f
commit
73e53f9922
|
@ -30,7 +30,7 @@ type Migration struct {
|
|||
}
|
||||
|
||||
func (m *Migration) String() string {
|
||||
return fmt.Sprintf(m.Source)
|
||||
return fmt.Sprint(m.Source)
|
||||
}
|
||||
|
||||
// Up runs an up migration.
|
||||
|
|
Loading…
Reference in New Issue