diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2017-01-03 18:14:32 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2017-01-03 18:14:32 -0500 |
| commit | c5d68db9fb5f831106ce3eb12048e8f9005e531b (patch) | |
| tree | efb7f9298b53349e218792cb4379350c1bf0511f /steam | |
| parent | 8c2ed23f2e25265c6a74870eb4f6b5ad0e82f475 (diff) | |
| download | steam-export-c5d68db9fb5f831106ce3eb12048e8f9005e531b.tar.gz steam-export-c5d68db9fb5f831106ce3eb12048e8f9005e531b.tar.xz | |
Added a build script with other minimal changes
Diffstat (limited to 'steam')
| -rw-r--r-- | steam/steam.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/steam/steam.go b/steam/steam.go index 02ecd7e..1f764f2 100644 --- a/steam/steam.go +++ b/steam/steam.go @@ -90,9 +90,9 @@ func (l *Library) FindACF(g string) (string, error) { // This is automatically called to print out the contents of the struct // when things like fmt.Println are used func (s *Library) String() (str string) { - str = fmt.Sprintln("----") + str = fmt.Sprintln("\n----") str = str + fmt.Sprintln(s.Folder) - str = str + "----\n" + str = str + "\n----\n" for k, v := range s.Games { str = str + fmt.Sprintf("%d: %s\n", k, v) //str = str + fmt.Sprintln(v) |
