Skip to content

Commit

Permalink
[InfoBarGenerics] tweak debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Huevos committed Aug 22, 2023
1 parent 33b809e commit cc9fcd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/python/Screens/InfoBarGenerics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3383,7 +3383,7 @@ def addRecordingTime(self, entry):

def inputAddRecordingTime(self, value):
if value:
print("[InfoBarGenerics] added %s minutes for recording." % int(value))
print("[InfoBarInstantRecord] added %s minutes for recording." % int(value))
entry = self.recording[self.selectedEntry]
if int(value) != 0:
entry.autoincrease = False
Expand All @@ -3393,7 +3393,7 @@ def inputAddRecordingTime(self, value):
def inputCallback(self, value):
entry = self.recording[self.selectedEntry]
if value is not None:
print("[InfoBarGenerics] stopping recording after %s minutes." % int(value))
print("[InfoBarInstantRecord] stopping recording after %s minutes." % int(value))
if int(value) != 0:
entry.autoincrease = False
entry.end = int(time()) + 60 * int(value)
Expand Down

0 comments on commit cc9fcd4

Please sign in to comment.