mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-01 22:30:13 +01:00
Fix undefined symbol when using ProcessNullUpdates in configuration file
This commit is contained in:
@@ -725,11 +725,11 @@ class Update(object):
|
|||||||
if self.__config.get(section,'ProcessNullUpdates')=='0':
|
if self.__config.get(section,'ProcessNullUpdates')=='0':
|
||||||
result=result and True
|
result=result and True
|
||||||
if self.__config.get(section,'ProcessNullUpdates')=='1':
|
if self.__config.get(section,'ProcessNullUpdates')=='1':
|
||||||
result=result and self.hasPadType(pypad.TYPE_NOW)
|
result=result and self.hasPadType(TYPE_NOW)
|
||||||
if self.__config.get(section,'ProcessNullUpdates')=='2':
|
if self.__config.get(section,'ProcessNullUpdates')=='2':
|
||||||
result=result and self.hasPadType(pypad.TYPE_NEXT)
|
result=result and self.hasPadType(TYPE_NEXT)
|
||||||
if self.__config.get(section,'ProcessNullUpdates')=='3':
|
if self.__config.get(section,'ProcessNullUpdates')=='3':
|
||||||
result=result and self.hasPadType(pypad.TYPE_NOW) and self.hasPadType(pypad.TYPE_NEXT)
|
result=result and self.hasPadType(TYPE_NOW) and self.hasPadType(TYPE_NEXT)
|
||||||
else:
|
else:
|
||||||
result=result and True
|
result=result and True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user