modified variable name str

pull/57/head^2
Mokaddem 2016-07-12 11:52:19 +02:00
parent 5a9eca9291
commit 8a1247cf5d
1 changed files with 3 additions and 3 deletions

View File

@ -19,11 +19,11 @@ import ipaddress
from Helper import Process
# Used to prevent concat with empty fields due to url parsing
def avoidNone(str):
if str is None:
def avoidNone(a_string):
if a_string is None:
return ""
else:
return str
return a_string
if __name__ == "__main__":
publisher.port = 6380