Skip to content

Commit

Permalink
v0.8.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
taext committed Oct 28, 2019
1 parent 8133046 commit 5fe3538
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion files/cnf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_os_file_separator():

# hard-coded canonical package version number

version_number = 'v0.8.8.0'
version_number = 'v0.8.8.1'


# constants for use in modules
Expand Down
6 changes: 4 additions & 2 deletions files/yota.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,8 @@ def youtube_time_format(self, seconds):
if minutes:
final_str += str(minutes) + 'm'
if seconds:
final_str += str(rest) + 's'
if rest != 0:
final_str += str(rest) + 's'

return(final_str)

Expand Down Expand Up @@ -952,7 +953,8 @@ def youtube_time_format(self, seconds):
if minutes:
final_str += str(minutes) + 'm'
if seconds:
final_str += str(rest) + 's'
if rest != 0:
final_str += str(rest) + 's'

return(final_str)

Expand Down

0 comments on commit 5fe3538

Please sign in to comment.