aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2013-07-04 20:15:21 +0200
committerThijs Schreijer <thijs@thijsschreijer.nl>2013-07-04 20:15:21 +0200
commitd21c0f7bdc25eb3b0feb19e317128e70020a6a5b (patch)
tree921ce0223a4c7f7c7230198124fdf61187621817
parent0d3ee0f874dd7a31929fd0fd21ffc5d11a91b95b (diff)
downloadluarocks-d21c0f7bdc25eb3b0feb19e317128e70020a6a5b.tar.gz
luarocks-d21c0f7bdc25eb3b0feb19e317128e70020a6a5b.tar.bz2
luarocks-d21c0f7bdc25eb3b0feb19e317128e70020a6a5b.zip
fixed bad varname
-rw-r--r--src/luarocks/deps.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/deps.lua b/src/luarocks/deps.lua
index c556bc23..02443d1c 100644
--- a/src/luarocks/deps.lua
+++ b/src/luarocks/deps.lua
@@ -198,7 +198,7 @@ function parse_constraints(input)
198 if constraint then 198 if constraint then
199 table.insert(constraints, constraint) 199 table.insert(constraints, constraint)
200 else 200 else
201 return nil, "Failed to parse constraint '"..tostring(o_input).."' with error: ".. input 201 return nil, "Failed to parse constraint '"..tostring(oinput).."' with error: ".. input
202 end 202 end
203 end 203 end
204 return constraints 204 return constraints