Skip to content

Commit

Permalink
fix join
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 30, 2023
1 parent 9bf24ad commit 46a2a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setupsrc/pypdfium2_setup/packaging_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def to_full(cls, v_short, type=dict):
if type in (tuple, list):
return v_parts
elif type is str:
return v_parts.join(".")
return ".".join(v_parts)
elif type is dict:
return dict(zip(PdfiumVer.V_KEYS, v_parts))
else:
Expand Down

0 comments on commit 46a2a61

Please sign in to comment.