diff options
| author | Daniel Pittman <daniel@puppetlabs.com> | 2011-04-19 20:52:52 -0700 |
|---|---|---|
| committer | Daniel Pittman <daniel@puppetlabs.com> | 2011-04-20 13:54:52 -0700 |
| commit | a1db58528f2baf7867202058d80e66f23fb447e0 (patch) | |
| tree | 9a0ae1c98f3a0985979ef773a7f7cb3c22203d25 /lib/puppet | |
| parent | 601baf1f25e5f62b5f501635cf49721187045f29 (diff) | |
| download | puppet-a1db58528f2baf7867202058d80e66f23fb447e0.tar.gz puppet-a1db58528f2baf7867202058d80e66f23fb447e0.tar.xz puppet-a1db58528f2baf7867202058d80e66f23fb447e0.zip | |
maint: fix gratuitous whitespace in the code.
We had some stray spacing between variables and the '=' sign from when there
was another variable in place; it got deleted, but the code wasn't closed up.
Reviewed-By: Max Martin <max@puppetlabs.com>
Diffstat (limited to 'lib/puppet')
| -rw-r--r-- | lib/puppet/application/face_base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/application/face_base.rb b/lib/puppet/application/face_base.rb index 9da48af55..fabe71896 100644 --- a/lib/puppet/application/face_base.rb +++ b/lib/puppet/application/face_base.rb @@ -92,8 +92,8 @@ class Puppet::Application::FaceBase < Puppet::Application # REVISIT: These should be configurable versions, through a global # '--version' option, but we don't implement that yet... --daniel 2011-03-29 - @type = self.class.name.to_s.sub(/.+:/, '').downcase.to_sym - @face = Puppet::Face[@type, :current] + @type = self.class.name.to_s.sub(/.+:/, '').downcase.to_sym + @face = Puppet::Face[@type, :current] # Now, walk the command line and identify the action. We skip over # arguments based on introspecting the action and all, and find the first |
