Skip to content

Commit f2544d8

Browse files
committed
Fix long lines
1 parent b532a8e commit f2544d8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/cargo/cargo.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,17 +1165,17 @@ fn sync_one_file(c: &Cargo, dir: &Path, src: @Source) -> bool {
11651165
let r = pgp::verify(&c.root, &pkgfile, &sigfile);
11661166

11671167
if !r {
1168-
error(fmt!("signature verification failed for source %s with key %s",
1169-
name, f));
1168+
error(fmt!("signature verification failed for source %s with \
1169+
key %s", name, f));
11701170
return false;
11711171
}
11721172

11731173
if has_src_file {
11741174
let e = pgp::verify(&c.root, &srcfile, &srcsigfile);
11751175

11761176
if !e {
1177-
error(fmt!("signature verification failed for source %s with key %s",
1178-
name, f));
1177+
error(fmt!("signature verification failed for source %s \
1178+
with key %s", name, f));
11791179
return false;
11801180
}
11811181
}
@@ -1276,8 +1276,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
12761276
let r = pgp::verify(&c.root, &pkgfile, &sigfile);
12771277

12781278
if !r {
1279-
error(fmt!("signature verification failed for source %s with key %s",
1280-
name, f));
1279+
error(fmt!("signature verification failed for source %s with \
1280+
key %s", name, f));
12811281
rollback(name, dir, false);
12821282
return false;
12831283
}
@@ -1286,8 +1286,8 @@ fn sync_one_git(c: &Cargo, dir: &Path, src: @Source) -> bool {
12861286
let e = pgp::verify(&c.root, &srcfile, &srcsigfile);
12871287

12881288
if !e {
1289-
error(fmt!("signature verification failed for source %s with key %s",
1290-
name, f));
1289+
error(fmt!("signature verification failed for source %s \
1290+
with key %s", name, f));
12911291
rollback(name, dir, false);
12921292
return false;
12931293
}
@@ -1373,8 +1373,8 @@ fn sync_one_curl(c: &Cargo, dir: &Path, src: @Source) -> bool {
13731373
let r = pgp::verify(&c.root, &pkgfile, &sigfile);
13741374

13751375
if !r {
1376-
error(fmt!("signature verification failed for source %s with key %s",
1377-
name, f));
1376+
error(fmt!("signature verification failed for source %s with \
1377+
key %s", name, f));
13781378
return false;
13791379
}
13801380

0 commit comments

Comments
 (0)