seanbell / opensurfaces

Crowdsourcing pipeline and website for OpenSurfaces [SIG '13] and Intrinsic Images in the Wild [SIG '14]
http://opensurfaces.cs.cornell.edu/
MIT License
150 stars 41 forks source link

Incorrect format string #7

Open kmatzen opened 8 years ago

kmatzen commented 8 years ago

https://github.com/seanbell/opensurfaces/blob/master/server/mturk/models.py#L237

base_url = 'http://' % settings.SERVER_IP

Missing the string placeholder. Change to either

base_url = 'http://%s' % settings.SERVER_IP

or

base_url = 'http://' + settings.SERVER_IP

Although, it doesn't really matter anymore since mturk outright rejects HITs that specify a URL with http://.