From 71670c4f92238a1bef2249b196b5d25400c76061 Mon Sep 17 00:00:00 2001 From: binamkayastha Date: Mon, 26 Jun 2017 18:40:31 -0400 Subject: [PATCH] Update create application link --- README.md | 2 +- lib/wlist.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ce9616..65ad554 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ If you try to use `wlist` without a `WLIST_CLIENT_ID` set, you’ll get gently n $ bin/wlist inbox Missing $WLIST_CLIENT_ID in environment - Visit https://developer.wunderlist.com/applications and create an app! + Visit https://developer.wunderlist.com/apps/new and create an app! Likewise with the access token diff --git a/lib/wlist.rb b/lib/wlist.rb index 220698b..31180cc 100644 --- a/lib/wlist.rb +++ b/lib/wlist.rb @@ -56,7 +56,7 @@ def reverse_color; "\033[7m#{self}\033[27m" end def client_id return ENV['WLIST_CLIENT_ID'] if ENV['WLIST_CLIENT_ID'] puts "Missing $WLIST_CLIENT_ID in environment" - puts "Visit https://developer.wunderlist.com/applications and create an app!" + puts "Visit https://developer.wunderlist.com/apps/new and create an app!" exit -1 end