summaryrefslogtreecommitdiff
path: root/lib/postrunner.rb
diff options
context:
space:
mode:
authorChris Schlaeger <chris@linux.com>2016-04-16 17:09:08 +0200
committerChris Schlaeger <chris@linux.com>2016-04-16 17:09:08 +0200
commit32f69405a525ca4dbf7bae53318bfa9c8f9dcb1c (patch)
treefab827a9c10d74874d0bbaf385f6aff2224d9583 /lib/postrunner.rb
parentd8847c6367533f5b0aaf221b3ad73c0fdf81d3dd (diff)
downloadpostrunner-32f69405a525ca4dbf7bae53318bfa9c8f9dcb1c.zip
Fix: Improved error handling
Diffstat (limited to 'lib/postrunner.rb')
-rw-r--r--lib/postrunner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/postrunner.rb b/lib/postrunner.rb
index 3aeff83..79bbf93 100644
--- a/lib/postrunner.rb
+++ b/lib/postrunner.rb
@@ -3,7 +3,7 @@
#
# = postrunner.rb -- PostRunner - Manage the data from your Garmin sport devices.
#
-# Copyright (c) 2014 by Chris Schlaeger <cs@taskjuggler.org>
+# Copyright (c) 2014, 2016 by Chris Schlaeger <cs@taskjuggler.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
@@ -21,6 +21,6 @@ require 'postrunner/Main'
module PostRunner
- Main.new(ARGV)
+ Main.new.main(ARGV)
end