* examples/ARcue.py:

* examples/gtkcrc.py:
	* morituri/common/task.py:
	  Make a real Task interface and use it.
	  Make runners reusable for multiple tasks.
	  gtkcrc.py seems to be blocking updates however.
This commit is contained in:
Thomas Vander Stichele
2009-04-11 14:46:19 +00:00
parent ed72dfe94f
commit 8486ee782b
4 changed files with 107 additions and 29 deletions

View File

@@ -58,8 +58,8 @@ def main(path):
print 'ERROR: path %s not found' % file.path
continue
runner = task.SyncRunner(crctask)
runner.run()
runner = task.SyncRunner()
runner.run(crctask)
print "%08x" % crctask.crc