From f8e50b4ef50df89d29c179a5a74b4ea70678cf87 Mon Sep 17 00:00:00 2001 From: Mike Blume Date: Mon, 16 Sep 2013 10:58:10 -0700 Subject: [PATCH] options.token -> options.auth --- configure-syslog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure-syslog.py b/configure-syslog.py index 840c1c7..1d882d8 100755 --- a/configure-syslog.py +++ b/configure-syslog.py @@ -1285,8 +1285,8 @@ def install(current_environment): perform_sanity_check_and_get_product_for_configuration(current_environment) options = current_environment['options'] - if options.token: - token = options.token + if options.auth: + token = options.auth else: loggly_user, loggly_password, loggly_subdomain = login() token = get_auth_token(loggly_user, loggly_password, loggly_subdomain)