From f2d588a965ee7fd76985d16b5ad93dc66b9d2be1 Mon Sep 17 00:00:00 2001 From: drebs Date: Wed, 1 May 2013 16:12:33 -0300 Subject: Fix some items from second review. Items are: * remove unused imports. * __init__.py: initialize variable before read from file. * backends/leap_backend.py: Fix mistyped exception name, fix docstring of encryption function. --- src/leap/soledad/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/leap/soledad/__init__.py') diff --git a/src/leap/soledad/__init__.py b/src/leap/soledad/__init__.py index fb4c5520..2138e14e 100644 --- a/src/leap/soledad/__init__.py +++ b/src/leap/soledad/__init__.py @@ -264,7 +264,7 @@ class Soledad(object): logger.info('Creating directory: %s.' % path) os.makedirs(path) else: - logger.warning('Using existent directory: %s.' % path) + logger.info('Using existent directory: %s.' % path) else: raise NotADirectory(path) @@ -325,7 +325,8 @@ class Soledad(object): # does the file exist in disk? if not os.path.isfile(self.secret_path): return False - # is it symmetrically encrypted? + # is it symfetrically encrypted? + content = None with open(self.secret_path, 'r') as f: content = f.read() if not self._crypto.is_encrypted_sym(content): -- cgit v1.2.3