summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/helloworld.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/helloworld.lua b/apps/plugins/helloworld.lua
index 94e55af3cc..aa2ef446d3 100644
--- a/apps/plugins/helloworld.lua
+++ b/apps/plugins/helloworld.lua
@@ -65,7 +65,7 @@ end
65-- Helper function which reads the contents of a file 65-- Helper function which reads the contents of a file
66function file_get_contents(filename) 66function file_get_contents(filename)
67 local file = io.open(filename, "r") 67 local file = io.open(filename, "r")
68 if(file == nil) then 68 if not file then
69 return nil 69 return nil
70 end 70 end
71 71
@@ -78,11 +78,11 @@ end
78-- Helper function which saves contents to a file 78-- Helper function which saves contents to a file
79function file_put_contents(filename, contents) 79function file_put_contents(filename, contents)
80 local file = io.open(filename, "w+") -- See Lua manual for more information 80 local file = io.open(filename, "w+") -- See Lua manual for more information
81 if(file == nil) then 81 if not file then
82 return false 82 return false
83 end 83 end
84 84
85 local ret = file:write(contents) == 1 85 local ret = file:write(contents) == true
86 file:close() -- GC takes care of this if you would've forgotten it 86 file:close() -- GC takes care of this if you would've forgotten it
87 return ret 87 return ret
88end 88end