commit f94db8679b6a8cb77bc9b25dd48f823f3418783f
Author: aagbsn <[email protected]>
Date:   Thu Sep 5 10:58:35 2013 -0400

    Don't reference deck_hash if it was not supplied
---
 ooni/deck.py |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/ooni/deck.py b/ooni/deck.py
index 3b0716c..36d88c6 100644
--- a/ooni/deck.py
+++ b/ooni/deck.py
@@ -77,9 +77,10 @@ class Deck(InputFile):
 
         cached_deck_dir = os.path.join(config.advanced.data_dir,
                 'decks')
-        cache_path = os.path.join(cached_deck_dir, deck_hash)
-        self.cached_file = cache_path
-        self.cached_descriptor = cache_path + '.desc'
+        if deck_hash:
+            cache_path = os.path.join(cached_deck_dir, deck_hash)
+            self.cached_file = cache_path
+            self.cached_descriptor = cache_path + '.desc'
  
         if deckFile: self.loadDeck(deckFile)
 



_______________________________________________
tor-commits mailing list
[email protected]
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits

Reply via email to