[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Breakthrough dream or Selenophobia
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Thu, 30 Mar 2017 09:18:27 -0300
> local pkg = assert(require "obscuremodule")
Calling assert here does nothing because require raises errors if they occur.
Perhaps you mean
local ok, pkg = pcall(require,"obscuremodule")