Use + for consistency

This commit is contained in:
Paul Makepeace 2011-06-23 09:49:59 +00:00
parent bd43d001c4
commit 63258f58b1
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class RefineServer(object):
@staticmethod
def url():
"""Return the URL to the Refine server."""
server='http://%s' % REFINE_HOST
server = 'http://' + REFINE_HOST
if REFINE_PORT != '80':
server += ':' + REFINE_PORT
return server