From f3d4421af213ead7eabc910c38e0281f488f97fb Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Mon, 2 Oct 2017 12:12:33 -0500 Subject: [PATCH] Fix option handling. --- daily_notifier.nim | 4 ++-- daily_notifier.nimble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daily_notifier.nim b/daily_notifier.nim index 667b7df..188a008 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -11,7 +11,7 @@ type DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string, notificationSecs: int] -const VERSION = "0.3.1" +const VERSION = "0.3.2" const NOTE_TITLE = "Daily Notifier v" & VERSION const timeFmt = "HH:mm" @@ -77,7 +77,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} = # Find and parse the .dailynotificationrc file let rcLocations = @[ - if args["--config"]: $args[""] else:"", + if args["--config"]: $args["--config"] else:"", ".dailynotificationrc", $getEnv("DAILY_NOTIFICATION_RC"), $getEnv("HOME") & "/.dailynotificationrc"] diff --git a/daily_notifier.nimble b/daily_notifier.nimble index 6b5d8bd..8e009cc 100644 --- a/daily_notifier.nimble +++ b/daily_notifier.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.1" +version = "0.3.2" author = "Jonathan Bernard" description = "Little programs that reads my daily plan and notifies me of upcoming events." license = "MIT"