chore: Changed warning text, and some logging values
This commit is contained in:
parent
b72f1d7291
commit
ce71ef1e81
1 changed files with 3 additions and 2 deletions
|
@ -89,7 +89,7 @@ def setupPaths():
|
||||||
Path(config_dir).mkdir(parents=True, exist_ok=True)
|
Path(config_dir).mkdir(parents=True, exist_ok=True)
|
||||||
except FileExistsError:
|
except FileExistsError:
|
||||||
print(
|
print(
|
||||||
"The config dir {} already exists and is not a directory! Please fix manually.".format(
|
"The config dir {} already exists and is not a directory! Please fix manually. Quitting!".format(
|
||||||
config_dir
|
config_dir
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
@ -138,11 +138,12 @@ def main():
|
||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
if bad_time is True:
|
if bad_time is True:
|
||||||
logger.warning(
|
logger.debug(
|
||||||
"Feed %s doesn't supply a published time, using updated time instead",
|
"Feed %s doesn't supply a published time, using updated time instead",
|
||||||
hook["name"],
|
hook["name"],
|
||||||
)
|
)
|
||||||
# Hash the title and time of the latest post and use that to determine if it's been posted
|
# Hash the title and time of the latest post and use that to determine if it's been posted
|
||||||
|
# Yes, SHA3-512 is totally unnecessary for this purpose, but I love SHA3
|
||||||
new_hash = hashlib.sha3_512(
|
new_hash = hashlib.sha3_512(
|
||||||
bytes(latest_post["title"] + str(published_time), "utf-8")
|
bytes(latest_post["title"] + str(published_time), "utf-8")
|
||||||
).hexdigest()
|
).hexdigest()
|
||||||
|
|
Loading…
Add table
Reference in a new issue