diff options
author | msglm <msglm@techchud.xyz> | 2023-05-01 16:13:41 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-05-01 16:13:41 -0500 |
commit | 735db7c3f21761a435423ed092712bad0e97b8b8 (patch) | |
tree | 7d1ae1c9d59488c8682ff2fd85d8cace45b00832 /src/indeedwatcher.nim | |
parent | eba88585e1da845b3e10e322aac2a4625c032603 (diff) | |
download | indeedwatcher-1.1.1.tar.gz indeedwatcher-1.1.1.tar.bz2 indeedwatcher-1.1.1.zip |
ensure that indeed watcher outputs company name when outputting filev1.1.1
Diffstat (limited to 'src/indeedwatcher.nim')
-rw-r--r-- | src/indeedwatcher.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indeedwatcher.nim b/src/indeedwatcher.nim index a8d6bfc..a0a8686 100644 --- a/src/indeedwatcher.nim +++ b/src/indeedwatcher.nim @@ -174,7 +174,7 @@ for feed in feeds: Description: $6 """ % [posting.jobName, posting.employer, posting.location, salaryInfoAndJobType, posting.URL, fullDesc] - writeFile(outdir & posting.jobName.replace("/") & ".txt", output) + writeFile(outdir & posting.employer & " - " & posting.jobName.replace("/") & ".txt", output) echo "Wrote job to file!" cache.writeLine(posting.URL) echo "Wrote listing to cache!" |