diff options
author | Alexander Yakushev <yakushev.alex@gmail.com> | 2011-10-25 14:06:45 +0300 |
---|---|---|
committer | Alexander Yakushev <yakushev.alex@gmail.com> | 2011-10-25 14:06:45 +0300 |
commit | eb99c73f6b2c201367c6ed32d35ae7c389539051 (patch) | |
tree | d8ff9a853db2bb7dbe61b5a2d9b71307555d3d79 | |
parent | 7f02daad133c11af5ee74f6c8fe84c22f5c02eff (diff) | |
download | awesompd-eb99c73f6b2c201367c6ed32d35ae7c389539051.tar.gz awesompd-eb99c73f6b2c201367c6ed32d35ae7c389539051.tar.bz2 |
Properly grab environment in jamendo module
-rw-r--r-- | jamendo.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/jamendo.lua b/jamendo.lua index d6cc50a..59ccb3d 100644 --- a/jamendo.lua +++ b/jamendo.lua @@ -4,10 +4,17 @@ -- @release v1.0.9 --------------------------------------------------------------------------- -module('jamendo', package.seeall) - -- Grab environment local os = os +local awful = awful +local string = string +local table = table +local io = io +local pairs = pairs +local type = type +local assert = assert + +module('jamendo') -- UTILITY STUFF -- Checks whether file specified by filename exists. |