MANIFEST.in file added + formatting

Change-Id: I2e28ce8c81d1b743c8d20425fec16436f7d30542
This commit is contained in:
Stan Lagun 2013-11-19 19:21:48 +04:00
parent 984a43af34
commit 37bc6d174f
2 changed files with 5 additions and 3 deletions

3
python-agent/MANIFEST.in Normal file
View File

@ -0,0 +1,3 @@
include requirements.txt
prune windows-agent
prune python-agent

View File

@ -144,9 +144,8 @@ class MuranoAgent(service.Service):
self._queue.put_execution_plan(msg.body)
else:
try:
execution_result = \
ExecutionResult.from_error(
err, Bunch(msg.body))
execution_result = ExecutionResult.from_error(
err, Bunch(msg.body))
self._send_result(execution_result)
except ValueError: