Skip to content

Commit

Permalink
comparer: rmv unnecessary println
Browse files Browse the repository at this point in the history
  • Loading branch information
arxdsilva committed Mar 20, 2018
1 parent f96f28d commit fe34038
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion comparer/comparer.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ func checkTransDirExists(dir, translation string) (err error) {
splitedDirectory := strings.Split(dir, pathSep)
parentDirFromSplit := dir[:len(dir)-len(splitedDirectory[len(splitedDirectory)-1])-1]
os.Chdir(parentDirFromSplit)
fmt.Println(fmt.Sprintf("creating: %v \ndir: %v \nerr: %v", splitedDirectory[len(splitedDirectory)-1], dir, err))
err = os.Mkdir(splitedDirectory[len(splitedDirectory)-1], 0700)
if err != nil {
return
Expand Down

0 comments on commit fe34038

Please sign in to comment.