Change shebang to python2 (see PEP394)

Would've prevented #7
This commit is contained in:
Stefan Hacker
2016-10-21 22:53:36 +02:00
committed by Stefan Hacker
parent dd19472b8c
commit 0361021fbd
9 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
# -*- coding: utf-8
# Copyright (C) 2010 Stefan Hacker <dd0t@users.sourceforge.net>
@@ -143,4 +143,4 @@ class Worker(Thread):
@local_thread_blocking
def call_by_name_blocking(self, handler, function_name, *args, **kwargs):
return getattr(handler, function_name)(*args, **kwargs)
return getattr(handler, function_name)(*args, **kwargs)