Skip to content

Commit

Permalink
fix split
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusEh authored Jan 11, 2024
1 parent df9b51c commit 0d94a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/vdrrecordingfolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def initializeInfo(self):
if info_line[0] == 'D':
self.description = info_line[2:].strip()
if info_line[0] == 'F':
this_line = split(/ /, info_line[2:])
this_line = info_line[2:].split(" ")
self.framerate = float(this_line[0])

if self.title == '':
Expand Down

0 comments on commit 0d94a39

Please sign in to comment.