Skip to content

Commit 53e4b47

Browse files
authored
Fix indentation error
1 parent 8c8bb22 commit 53e4b47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/05_modules/batch_render/batchrender_adds_document_r13.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ def main():
2525
return True
2626

2727
# 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.
28+
# os.listdir base its encoding on the passed encoding of the directory
29+
# so it's important to pass an unicode string.
3030
c4dFiles = list()
3131
for file in os.listdir(directory.decode("utf-8")):
3232
if file.endswith(".c4d"):
@@ -49,4 +49,4 @@ def main():
4949

5050

5151
if __name__ == "__main__":
52-
main()
52+
main()

0 commit comments

Comments
 (0)