Skip to content

Commit

Permalink
Fix concatenation of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
kalabiyau committed Feb 12, 2014
1 parent 7aeeaf4 commit 9d59559
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/suse/connect/cli.rb
Expand Up @@ -42,15 +42,15 @@ def extract_options # rubocop:disable MethodLength
@opts = OptionParser.new

@opts.banner = 'SUSEConnect is a command line tool for connecting a client system to the SUSE Customer Center.'
@opts.separator 'It will connect the system to your product subscriptions and enable the product ' +
@opts.separator 'It will connect the system to your product subscriptions and enable the product ' \
'repositories/services locally.'
@opts.separator ''
@opts.separator 'Please visit https://scc.suse.com to see and manage your subscriptions.'
@opts.separator ''
@opts.separator 'Usage: SUSEConnect [options]'

@opts.on('-t', '--token [TOKEN]', 'Registration token. The repositories of the subscription with this ' +
'registration token will get activated on this system.') do |opt|
@opts.on('-t', '--token [TOKEN]', 'Registration token. The repositories of the subscription with this ' \
'registration token will get activated on this system.') do |opt|
check_if_param(opt, 'Please provide a registration token parameter')
@options[:token] = opt
end
Expand Down
2 changes: 1 addition & 1 deletion lib/suse/connect/version.rb
@@ -1,6 +1,6 @@
module SUSE
# Provides access to version number of a gem
module Connect
VERSION = '0.0.4'
VERSION = '0.0.5'
end
end

0 comments on commit 9d59559

Please sign in to comment.