diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-04-16 11:05:20 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-04-16 11:05:20 +0100 |
commit | c065c64017b9687f68abb30ca75fcb986fabf73b (patch) | |
tree | ff6f9a5dc54a13edb42634061c5edd3709c49ad0 | |
parent | 6307049ffdf123db731d03b942c12dfa2077cfa2 (diff) |
Make syntax a bit more readable.
-rw-r--r-- | lib/alaveteli_text_masker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/alaveteli_text_masker.rb b/lib/alaveteli_text_masker.rb index 520872980..0ba4fd2cf 100644 --- a/lib/alaveteli_text_masker.rb +++ b/lib/alaveteli_text_masker.rb @@ -64,7 +64,7 @@ module AlaveteliTextMasker else command = ["pdftk", "-", "output", "-", "compress"] end - AlaveteliExternalCommand.run(*(command + [{:stdin_string=>text}])) + AlaveteliExternalCommand.run(*(command + [ :stdin_string => text ])) end # Replace text in place |