cleanup: pep8

This commit is contained in:
2014-11-21 20:58:44 +01:00
parent 47a6eaa936
commit aac29c824d
12 changed files with 57 additions and 77 deletions

View File

@@ -55,4 +55,3 @@ def sha1_from_file(fn, block_size=1 << 20):
break
sha1.update(data)
return sha1.hexdigest()

View File

@@ -245,7 +245,6 @@ def pack(blendfile_src, blendfile_dst, mode='FILE',
zip_handle.write(src.decode('utf-8'),
arcname=os.path.relpath(dst, base_dir_dst).decode('utf-8'))
yield report(" %s: %r\n" % (colorize("written", color='green'), blendfile_dst))
else:
raise Exception("%s not a known mode" % mode)
@@ -331,4 +330,3 @@ def main():
if __name__ == "__main__":
main()