maxacan / clypher

GNU General Public License v3.0
0 stars 0 forks source link

Specifying --out option can break if the directory already exists. #2

Closed maxacan closed 4 months ago

maxacan commented 4 months ago

If --out is specified to be the same directory as the directory of the input file, the program raises a FileNotFoundError.

This is because the naive implementation of the FileHandler's _generate_output_path function simply appends the output prefix to the output path.

maxacan commented 4 months ago

Fixed this in V0.3