From 607ba745d140e5d2567a715c6ddaa775d2cf0d99 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 26 Apr 2015 10:00:04 +0200 Subject: [PATCH] fix(lib): update changed `url` crate imports --- src/mako/api/lib/mbuild.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mako/api/lib/mbuild.mako b/src/mako/api/lib/mbuild.mako index 9a8388d17c..dbb5f9b335 100644 --- a/src/mako/api/lib/mbuild.mako +++ b/src/mako/api/lib/mbuild.mako @@ -481,7 +481,7 @@ match result { /// Perform the operation you have build so far. ${action_fn} { % if URL_ENCODE in special_cases: - use url::{percent_encode, FORM_URLENCODED_ENCODE_SET}; + use url::percent_encoding::{percent_encode, FORM_URLENCODED_ENCODE_SET}; % endif use std::io::{Read, Seek}; use hyper::header::{ContentType, ContentLength, Authorization, UserAgent, Location};