Use + for consistency
This commit is contained in:
parent
bd43d001c4
commit
63258f58b1
|
@ -43,7 +43,7 @@ class RefineServer(object):
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def url():
|
def url():
|
||||||
"""Return the URL to the Refine server."""
|
"""Return the URL to the Refine server."""
|
||||||
server='http://%s' % REFINE_HOST
|
server = 'http://' + REFINE_HOST
|
||||||
if REFINE_PORT != '80':
|
if REFINE_PORT != '80':
|
||||||
server += ':' + REFINE_PORT
|
server += ':' + REFINE_PORT
|
||||||
return server
|
return server
|
||||||
|
|
Loading…
Reference in New Issue