mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-22 23:48:04 +02:00
2019-01-15 Fred Gleason <fredg@paravelsystems.com>
* Replaced deprecated 'configparser' method call in the 'pypad.Receiver::setConfigFile()' method.
This commit is contained in:
parent
d71a22b020
commit
81049eec8e
@ -18381,3 +18381,6 @@
|
|||||||
2019-01-15 Fred Gleason <fredg@paravelsystems.com>
|
2019-01-15 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug in rdlogedit(1) that caused indicated meter levels
|
* Fixed a bug in rdlogedit(1) that caused indicated meter levels
|
||||||
to be 5 dB too high for incoming signals in the voicetracker dialog.
|
to be 5 dB too high for incoming signals in the voicetracker dialog.
|
||||||
|
2019-01-15 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Replaced deprecated 'configparser' method call in the
|
||||||
|
'pypad.Receiver::setConfigFile()' method.
|
||||||
|
@ -807,7 +807,7 @@ class Receiver(object):
|
|||||||
else: # Get the config from a file
|
else: # Get the config from a file
|
||||||
fp=open(filename)
|
fp=open(filename)
|
||||||
self.__config_parser=configparser.ConfigParser(interpolation=None)
|
self.__config_parser=configparser.ConfigParser(interpolation=None)
|
||||||
self.__config_parser.readfp(fp)
|
self.__config_parser.read_file(fp)
|
||||||
fp.close()
|
fp.close()
|
||||||
|
|
||||||
return self.__config_parser
|
return self.__config_parser
|
||||||
|
Loading…
x
Reference in New Issue
Block a user