summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-05-01 16:13:41 -0500
committermsglm <msglm@techchud.xyz>2023-05-01 16:13:41 -0500
commit735db7c3f21761a435423ed092712bad0e97b8b8 (patch)
tree7d1ae1c9d59488c8682ff2fd85d8cace45b00832
parenteba88585e1da845b3e10e322aac2a4625c032603 (diff)
downloadindeedwatcher-735db7c3f21761a435423ed092712bad0e97b8b8.tar.gz
indeedwatcher-735db7c3f21761a435423ed092712bad0e97b8b8.tar.bz2
indeedwatcher-735db7c3f21761a435423ed092712bad0e97b8b8.zip
ensure that indeed watcher outputs company name when outputting filev1.1.1
-rw-r--r--src/indeedwatcher.nim2
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!"