mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
Merge branch 'mokaddem-testing'
This commit is contained in:
commit
c51bdec8aa
1 changed files with 3 additions and 3 deletions
|
@ -19,11 +19,11 @@ import ipaddress
|
||||||
from Helper import Process
|
from Helper import Process
|
||||||
|
|
||||||
# Used to prevent concat with empty fields due to url parsing
|
# Used to prevent concat with empty fields due to url parsing
|
||||||
def avoidNone(str):
|
def avoidNone(a_string):
|
||||||
if str is None:
|
if a_string is None:
|
||||||
return ""
|
return ""
|
||||||
else:
|
else:
|
||||||
return str
|
return a_string
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
publisher.port = 6380
|
publisher.port = 6380
|
||||||
|
|
Loading…
Reference in a new issue