From 31e61f1805982e6368bc77703e161af674c7687c Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Wed, 9 Oct 2013 21:10:51 +0000 Subject: Change use of require to work with Lua 5.2 --- bgp-model.lua | 2 +- ospf-model.lua | 2 +- zebra-model.lua | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bgp-model.lua b/bgp-model.lua index faa29ae..88badc6 100644 --- a/bgp-model.lua +++ b/bgp-model.lua @@ -1,7 +1,7 @@ module(..., package.seeall) -- Load libraries -require("modelfunctions") +modelfunctions = require("modelfunctions") format = require("acf.format") -- Set variables diff --git a/ospf-model.lua b/ospf-model.lua index ae1c74d..383050b 100644 --- a/ospf-model.lua +++ b/ospf-model.lua @@ -1,7 +1,7 @@ module(..., package.seeall) -- Load libraries -require("modelfunctions") +modelfunctions = require("modelfunctions") format = require("acf.format") -- Set variables diff --git a/zebra-model.lua b/zebra-model.lua index fc5b559..488e113 100644 --- a/zebra-model.lua +++ b/zebra-model.lua @@ -1,7 +1,7 @@ module(..., package.seeall) -- Load libraries -require("modelfunctions") +modelfunctions = require("modelfunctions") format = require("acf.format") -- Set variables -- cgit v1.2.3