ljs.dev
ljs.dev

Reputation: 4493

Why does Fabric usually output an extra empty line?

In Fabric deployments, there is often an extra empty response line output.

ie, after running

run('pwd')

Fabric will return

[mydomain] out: /mydir
[mydomain] out:

Why is this?

Upvotes: 2

Views: 478

Answers (1)

Alex
Alex

Reputation: 2420

This could be related to an old issue that the maintainer marked as fixed.

https://github.com/fabric/fabric/issues/219

Upvotes: 2

Related Questions