remove assert syntax

assert is not a good tool for checking common mistakes, but could be
used test conditions that `should never happen` (there're many talks
about it)

Change-Id: Iccf9710008293465bb9bb59e65f0ed77d7910688
This commit is contained in:
Kun Huang 2013-07-20 08:40:42 +08:00
parent 0fdad0d9d9
commit 86cbcecb59

View File

@ -121,7 +121,8 @@ class DiskWriter(object):
:param metadata: dictionary of metadata to be written
:param extension: extension to be used when making the file
"""
assert self.tmppath is not None
if not self.tmppath:
raise ValueError("tmppath is unusable.")
timestamp = normalize_timestamp(metadata['X-Timestamp'])
metadata['name'] = self.disk_file.name