File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,10 @@ def test_record_command_as_success(self):
57
57
58
58
with build_env :
59
59
build_env .run (
60
- ' false' ,
60
+ " false" ,
61
61
record_as_success = True ,
62
62
# Use a directory that exists so the command doesn't fail.
63
- cwd = ' /tmp' ,
63
+ cwd = " /tmp" ,
64
64
)
65
65
self .assertEqual (len (build_env .commands ), 1 )
66
66
Original file line number Diff line number Diff line change @@ -610,7 +610,9 @@ def submodules(self) -> Iterable[GitSubmodule]:
610
610
url = submodule .get ("url" )
611
611
path = submodule .get ("path" )
612
612
if not url or not path :
613
- log .warning ("Invalid submodule." , submoduel_url = url , submodule_path = path )
613
+ log .warning (
614
+ "Invalid submodule." , submoduel_url = url , submodule_path = path
615
+ )
614
616
continue
615
617
yield GitSubmodule (
616
618
url = url ,
You can’t perform that action at this time.
0 commit comments