Commit 18d9d80 1 parent 5ddad40 commit 18d9d80 Copy full SHA for 18d9d80
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3024,14 +3024,16 @@ def main() -> None:
3024
3024
font_file = DEFAULT_FONT .get (sys .platform , None )
3025
3025
if font_file is None :
3026
3026
print (
3027
- f"Unable to get a font file for platform { sys .platform } . Please provide valid font file using --font or disable timestamp using --no-timestamp."
3027
+ f"Unable to get a font file for platform { sys .platform } . Please provide valid font file using "
3028
+ f"--font or disable timestamp using --no-timestamp."
3028
3029
)
3029
3030
return
3030
3031
3031
3032
temp_font_file = f"c:\{ font_file } " if sys .platform == "win32" else font_file
3032
3033
if not os .path .isfile (temp_font_file ):
3033
3034
print (
3034
- f"Default font file { font_file } does not exist, please provide a font file using --font or disable timestamp using --no-timestamp"
3035
+ f"Default font file { font_file } does not exist, please provide a font file using --font or "
3036
+ f"disable timestamp using --no-timestamp"
3035
3037
)
3036
3038
return
3037
3039
You can’t perform that action at this time.
0 commit comments