diff options
author | Dale Hamel <dale.hamel@srvthe.net> | 2013-10-08 13:53:22 -0500 |
---|---|---|
committer | Dale Hamel <dale.hamel@invenia.ca> | 2013-10-08 13:53:22 -0500 |
commit | 6d7ced4a2311eeff037c5575cca1868a6d3f586f (patch) | |
tree | 649213583fc68e67cb0a570f625a2888f360d117 /lib | |
parent | 1875141a963a4238bda29011d8f7105839485253 (diff) | |
download | gitlab-ce-6d7ced4a2311eeff037c5575cca1868a6d3f586f.tar.gz |
Whitespace fixes to patch
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/popen.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/gitlab/popen.rb b/lib/gitlab/popen.rb index 369d6cc1f5d..5283cf0b821 100644 --- a/lib/gitlab/popen.rb +++ b/lib/gitlab/popen.rb @@ -1,4 +1,3 @@ - require 'fileutils' module Gitlab @@ -8,7 +7,7 @@ module Gitlab options = { chdir: path } unless File.directory?(path) - FileUtils.mkdir_p(path) + FileUtils.mkdir_p(path) end @cmd_output = "" |