We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8bb22 commit 53e4b47Copy full SHA for 53e4b47
scripts/05_modules/batch_render/batchrender_adds_document_r13.py
@@ -25,8 +25,8 @@ def main():
25
return True
26
27
# Retrieves a list of all Cinema 4D files of this directory
28
- # os.listdir base its encoding on the passed encoding of the directory
29
- # so it's important to pass an unicode string.
+ # os.listdir base its encoding on the passed encoding of the directory
+ # so it's important to pass an unicode string.
30
c4dFiles = list()
31
for file in os.listdir(directory.decode("utf-8")):
32
if file.endswith(".c4d"):
@@ -49,4 +49,4 @@ def main():
49
50
51
if __name__ == "__main__":
52
- main()
+ main()
0 commit comments