fixing typo
authorBryan Bonvallet <btbonval@gmail.com>
Sun, 18 May 2014 17:49:22 +0000 (13:49 -0400)
committerBryan Bonvallet <btbonval@gmail.com>
Sun, 18 May 2014 17:49:22 +0000 (13:49 -0400)
karmaworld/utils/filepicker.py

index 3bf0040b19648311eb512873afd5b3cd0a46865a..6f3af45174f6cd15a0581b0386931abb3b12141a 100644 (file)
@@ -5,7 +5,7 @@ import base64
 from hashlib import sha256
 import os
 
 from hashlib import sha256
 import os
 
-FILEPCIKER_SECRET = os.environ['FILEPCIKER_SECRET']
+FILEPICKER_SECRET = os.environ['FILEPICKER_SECRET']
 
 def encode_fp_policy(policy):
     """ Return URL-safe Base64 encoded JSON Filepicker policy. """
 
 def encode_fp_policy(policy):
     """ Return URL-safe Base64 encoded JSON Filepicker policy. """
@@ -25,6 +25,6 @@ def sign_fp_policy(policy):
     """ Return a signature appropriate for the given encoded policy. """
     # https://developers.inkfilepicker.com/docs/security/#signPolicy
     # hash it up, bra!
     """ Return a signature appropriate for the given encoded policy. """
     # https://developers.inkfilepicker.com/docs/security/#signPolicy
     # hash it up, bra!
-    engine = hmac.new(FILEPCIKER_SECRET, digestmod=sha256)
+    engine = hmac.new(FILEPICKER_SECRET, digestmod=sha256)
     engine.update(policy)
     return engine.hexdigest()
     engine.update(policy)
     return engine.hexdigest()