Comment out faulting assertion to debug other issues.

feature/documentation-builds-html
Isis Lovecruft 2013-04-15 00:41:04 +00:00
parent d0783cb398
commit a3e4cb661b
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ def _copy_data(instream, outstream):
sent = 0
try:
assert _is_stream(instream), "instream is not a stream"
#assert (util._is_stream(instream)
# or isinstance(instream, file)), "instream not stream or file"
assert isinstance(outstream, file), "outstream is not a file"
except AssertionError as ae:
logger.exception(ae)