Skip to content

Commit

Permalink
Added missing placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevenson Jean-Pierre committed Jul 27, 2016
1 parent d842cbf commit 3c271ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vpn_connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func addManagedVPNHost(vpnHost vpnInstance) {
}
hosts.Add(vpnHost.PublicIP, managedHost)
if err := hosts.Flush(); err != nil {
log.Fatalf("Error writing host entry", err)
log.Fatalf("Error writing host entry %s", err)
}
}

Expand All @@ -117,7 +117,7 @@ func removeExistingHost() {
}
}
if err := hosts.Flush(); err != nil {
log.Fatalf("Error writing host entry", err)
log.Fatalf("Error writing host entry %s", err)
}
}

Expand Down

0 comments on commit 3c271ac

Please sign in to comment.