diff options
author | Zachary Sloan | 2013-04-05 23:17:02 +0000 |
---|---|---|
committer | Zachary Sloan | 2013-04-05 23:17:02 +0000 |
commit | 27d0c86528fdbeaed56a7f5eaa71a950c522f183 (patch) | |
tree | cdb387c2b9e4689822896ac43713db3082893314 /wqflask/utility/temp_data.py | |
parent | 0005aa49167bbd615b09b991a28e857507ca03ed (diff) | |
download | genenetwork2-27d0c86528fdbeaed56a7f5eaa71a950c522f183.tar.gz |
Loading bar now correctly shows the time to completion
and the code seems to run correctly
Diffstat (limited to 'wqflask/utility/temp_data.py')
-rw-r--r-- | wqflask/utility/temp_data.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/wqflask/utility/temp_data.py b/wqflask/utility/temp_data.py index 0df79e54..004d45c6 100644 --- a/wqflask/utility/temp_data.py +++ b/wqflask/utility/temp_data.py @@ -11,7 +11,6 @@ class TempData(object): self.key = "tempdata:{}".format(self.temp_uuid) def store(self, field, value): - print("Storing...") self.redis.hset(self.key, field, value) self.redis.expire(self.key, 60*15) # Expire in 15 minutes |