Skip to content

Fix string conversion error #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions video_editors_render_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@

if render_gif:
print_banner += "\n GIF RENDER is [ ON ]\n ([ "\
+ gif_framerate + " FPS ] [ Stats:" + stats_mode\
+ str(gif_framerate) + " FPS ] [ Stats:" + stats_mode\
+ " ] [ Dither: " + dither_options + " ] [ X Scale: "\
+ str(gif_scale) + "] [Scaler:" + the_scaler + "])\n"

Expand Down Expand Up @@ -1036,7 +1036,7 @@
SCRIPTS ###############\n# If this script opened in a text editor rather than\
executing\n# inside a terminal window, it's because your file browser needs\n\
# to be set to allow executing scripts. In File Browsers like\n\
# Nautilus, you can find this setting in the Preferences->Behavior Tab")
# Nautilus, you can find this setting in the Preferences->Behavior Tab\n")

else:
f.write('#!/bin/bash\n'\
Expand All @@ -1050,7 +1050,7 @@
SCRIPTS ###############\n# If this script opened in a text editor rather than\
executing\n# inside a terminal window, it's because your file browser needs\n\
# to be set to allow executing scripts. In File Browsers like\n\
# Nautilus, you can find this setting in the Preferences->Behavior Tab")
# Nautilus, you can find this setting in the Preferences->Behavior Tab\n")

if my_platform != "Windows":
try:
Expand Down