Tumblelog 5.0.2
In the morning while working on a slightly improved version of
tweetfile.pl
using inspiration from tumblelog
I noticed a small bug in the
latter; I had written:
my $exit_code //= 0;
Instead of
my $exit_code = shift // 0;
in sub show_usage_and_exit
. I fixed this and pushed version 5.0.1 of
tumblelog
.
Later, when running the Dockerized Python version of tumblelog
I got
a warning explaining that the default Loader of yaml.load()
is
unsafe. In the evening I fixed this
issue and pushed 5.0.2.