Skip to content

Commit c83bcb5

Browse files
committed
Fix syntax error (whoops)
1 parent 821fd5d commit c83bcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

salt/modules/dpkg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def list_pkgs(*packages):
4141
return msg
4242
out = out['stdout']
4343

44-
for line in .splitlines():
44+
for line in out.splitlines():
4545
if line.startswith('ii '):
4646
comps = line.split()
4747
pkgs[comps[1]] = comps[2]

0 commit comments

Comments
 (0)