Skip to content

Commit

Permalink
Fix formatting in profile
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Jul 27, 2019
1 parent 552ac7e commit b7ca9f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/profile/profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import (
"encoding/base64"
"encoding/json"
"encoding/pem"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime"
"runtime/debug"
"strconv"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -259,7 +259,7 @@ func (p *Profile) writeAuth() (pth string, err error) {

authData := strings.Join([]string{
authToken,
strconv.Itoa(int(time.Now().Unix())),
fmt.Sprintf("%d", time.Now().Unix()),
password,
}, "")

Expand Down

0 comments on commit b7ca9f0

Please sign in to comment.