Advertisement
SergeyIbragimov

Mistake procedure or args

Jul 4th, 2020
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. from threading import Thread
  2.  
  3. #...
  4.  
  5. thread = []
  6.  
  7. thread.append(Thread(target=sub_folder, args=(folder="c:\\downloads\\new\\", files_template=re.compile(r""+myconfig["nomp4"]), isBarrier=True, )))
  8. """
  9.    thread.append(Thread(target=sub_folder, args=(folder="c:\\downloads\\new\\", files_template=re.compile(r""+myconfig["nomp4"]), isBarrier=True, )))
  10.                                                        ^
  11. SyntaxError: invalid syntax
  12. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement