Jaymon / captain

command line python scripts for humans
MIT License
13 stars 1 forks source link

echo.out should be able to just take a format string without arguments #12

Closed Jaymon closed 8 years ago

Jaymon commented 8 years ago

for some reason:

echo.out("foo {}".format("bar"))

Failed on Topher, but when he did:

echo.out("foo {}", "bar")

it worked.

I think there is a thing with format() being called internally with no arguments is the problem?