Skip to content

Commit bc3f703

Browse files
jaxgellertresf
authored andcommitted
Fix missing parenthesis (qzind#495)
1 parent 5d15b53 commit bc3f703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/signing/sign-message.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class PrintingController < ActionController::Base
2727
def sign
2828
digest = OpenSSL::Digest.new('sha1')
29-
pkey = OpenSSL::PKey::read(File.read(Rails.root.join('lib','certs','private-key.pem'))
29+
pkey = OpenSSL::PKey::read(File.read(Rails.root.join('lib', 'certs', 'private-key.pem')))
3030

3131
signed = pkey.sign(digest, params[:request])
3232
encoded = Base64.encode64(signed)

0 commit comments

Comments
 (0)