Skip to content

Commit 273b3ef

Browse files
committed
Removed trailing spaces
1 parent b1f4c96 commit 273b3ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/windows/export.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -931,13 +931,13 @@ def titlestring(sec, fps, mess):
931931
if ((frame % progressstep) == 0) or ((end_time_export - last_exported_time) > 1):
932932
new_part = (frame - start_frame_export) * 1.0 / (end_frame_export - start_frame_export)
933933
if ((new_part - old_part) > 0.0):
934-
# the log10 of the difference of the fraction of the completed frames is the negativ
934+
# the log10 of the difference of the fraction of the completed frames is the negativ
935935
# number of digits after the decimal point after which the first digit is not 0
936936
afterpoint = math.ceil( -2.0 - math.log10( new_part - old_part ))
937937
else:
938938
afterpoint = 1
939939
if afterpoint < 1:
940-
# We want at least 1 digit after the decimal point
940+
# We want at least 1 digit after the decimal point
941941
afterpoint = 1
942942
if afterpoint > 5:
943943
# We don't want not more than 5 difits after the decimal point

0 commit comments

Comments
 (0)