Skip to content

Commit 2efaa5c

Browse files
authored
luarocks-packages-updater: fix keyword argument name (NixOS#364834)
Introduced by NixOS#336137
1 parent b442653 commit 2efaa5c

File tree

1 file changed

+2
-2
lines changed
  • pkgs/by-name/lu/luarocks-packages-updater

1 file changed

+2
-2
lines changed

pkgs/by-name/lu/luarocks-packages-updater/updater.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def attr_path(self):
123123
def get_update(
124124
self,
125125
input_file: str,
126-
outfile: str,
126+
output_file: str,
127127
config: FetchConfig,
128128
# TODO: implement support for adding/updating individual plugins
129129
to_update: list[str] | None,
@@ -142,7 +142,7 @@ def update() -> dict:
142142
finally:
143143
pass
144144

145-
self.generate_nix(results, outfile)
145+
self.generate_nix(results, output_file)
146146

147147
redirects = {}
148148
return redirects

0 commit comments

Comments
 (0)