summaryrefslogtreecommitdiff
path: root/toreminder.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2018-07-06 13:32:06 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2018-09-08 16:12:34 +0200
commitce7ce9908b2a3f32cbfabb6b00ad52e105f0c7f5 (patch)
treeb2f59a816e2d0880d9c1cc0e44cb974cfc170a84 /toreminder.lua
parent78bde1b41e5cb692ea9ffbfff4d35edf3162dcdf (diff)
downloadcaldr-ce7ce9908b2a3f32cbfabb6b00ad52e105f0c7f5.tar.gz
rem: extract summary (subject) from events
Diffstat (limited to 'toreminder.lua')
-rwxr-xr-xtoreminder.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/toreminder.lua b/toreminder.lua
index e0216f4..5fe9e4b 100755
--- a/toreminder.lua
+++ b/toreminder.lua
@@ -3,7 +3,7 @@ local cal = require "cal"
local rem = require "rem"
local common = require "common"
-common.set_verbosity (2)
+common.set_verbosity (1)
local main = function (argv)
local ok, parsed = cal.parse_stdin ()
@@ -12,6 +12,7 @@ local main = function (argv)
end
local ok = rem.output_calendar (parsed)
+ print ""
return ok and 0 or -1
end