mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 14:43:30 +02:00
2022-11-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the 'pypad-icecast2' plug-in threw a stack dump when attempting to print an error message. * Fixed a regression in the 'pypad-tunein' plug-in threw a stack dump when attempting to print an error message. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
3f08f96299
commit
aa74b0b9a0
@ -23715,3 +23715,8 @@
|
||||
2022-11-22 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Changed the 'python3-mysql' dependency to 'python3-mysqlclient'
|
||||
in the RPM package for RHEL9 and above.
|
||||
2022-11-27 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in the 'pypad-icecast2' plug-in threw a stack
|
||||
dump when attempting to print an error message.
|
||||
* Fixed a regression in the 'pypad-tunein' plug-in threw a stack
|
||||
dump when attempting to print an error message.
|
||||
|
@ -33,6 +33,9 @@ except ModuleNotFoundError:
|
||||
import pypad # Rivendell v3.x style
|
||||
import configparser
|
||||
|
||||
def eprint(*args,**kwargs):
|
||||
print(*args,file=sys.stderr,**kwargs)
|
||||
|
||||
def ProcessPad(update):
|
||||
if update.hasPadType(pypad.TYPE_NOW):
|
||||
n=1
|
||||
|
@ -32,6 +32,9 @@ except ModuleNotFoundError:
|
||||
import pypad # Rivendell v3.x style
|
||||
import configparser
|
||||
|
||||
def eprint(*args,**kwargs):
|
||||
print(*args,file=sys.stderr,**kwargs)
|
||||
|
||||
def ProcessPad(update):
|
||||
if update.hasPadType(pypad.TYPE_NOW):
|
||||
n=1
|
||||
|
Loading…
x
Reference in New Issue
Block a user