Skip to content

Commit

Permalink
bugfix: fixed issue with shell reporting handler
Browse files Browse the repository at this point in the history
  • Loading branch information
lirazsiri committed Aug 6, 2011
1 parent 3d32331 commit eaf5b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudtask/reporter.py
Expand Up @@ -122,7 +122,7 @@ def __call__(self, session):
continue

if taskconf[attr]:
os.environ['CLOUDTASK_' + attr.upper()] = taskconf[attr]
os.environ['CLOUDTASK_' + attr.upper()] = str(taskconf[attr])

if taskconf.workers:
os.environ['CLOUDTASK_WORKERS'] = " ".join(taskconf.workers)
Expand Down

0 comments on commit eaf5b56

Please sign in to comment.