Fix deprecation warnings

This commit is contained in:
Simon Sapin 2015-07-24 22:16:35 +02:00
parent 903a608c6a
commit a3c0366bd6
7 changed files with 15 additions and 15 deletions

View file

@ -1060,7 +1060,7 @@ impl ScriptTask {
for it_page in self.root_page().iter() {
urls.push(it_page.document().url().serialize());
}
let path_seg = format!("url({})", urls.connect(", "));
let path_seg = format!("url({})", urls.join(", "));
let reports = ScriptTask::get_reports(self.get_cx(), path_seg);
reports_chan.send(reports);
}