File diff 2b709f61e022 → d0464e870c1a
conservancy/__init__.py
Show inline comments
 
import hashlib
 

	
 
from django.conf import settings
 

	
 

	
 
class ParameterValidator:
 
    def __init__(self, given_hash_or_params, params_hash_key=None):
 
        from django.conf import settings
 
        if params_hash_key is None:
 
            self.given_hash = given_hash_or_params
 
        else: