Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding colors to column values messes up the spacing #54

Open
GoogleCodeExporter opened this issue Jun 4, 2015 · 2 comments
Open

Adding colors to column values messes up the spacing #54

GoogleCodeExporter opened this issue Jun 4, 2015 · 2 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?

#!/usr/bin/python
from prettytable import PrettyTable

x = PrettyTable(["City name", "Area", "Population", "Annual Rainfall"])
x.align["City name"] = "l" # Left align city names
x.padding_width = 1 # One space between column edges and contents (default)
x.add_row(["Adelaide",1295, 1158259, 600.5])
x.add_row(["Brisbane",5905, 1857594, "\033[94m1146.4\033[0m"])
x.add_row(["Darwin", 112, 120900, 1714.7])
x.add_row(["Hobart", 1357, 205556, 619.5])
x.add_row(["Sydney", 2058, 4336374, 1214.8])
x.add_row(["Melbourne", 1566, 3806092, 646.9])
x.add_row(["Perth", 5386, 1554769, 869.4])
print x

What is the expected output? What do you see instead?

I would expect similar spacing and formatting with colors.

What version of the product are you using? On what operating system?

latest

Original issue reported on code.google.com by [email protected] on 3 Jun 2014 at 2:01

@GoogleCodeExporter
Copy link
Author

The problem is related to the TERM environment variable. When TERM=xterm, the 
problem exists. When TERM=xterm-color, the problem is resolved. 


Original comment by [email protected] on 8 Dec 2014 at 7:27

@GoogleCodeExporter
Copy link
Author

This actually works in v0.7.2 afaict.
xterm related: issue #63

Original comment by [email protected] on 9 Dec 2014 at 4:52

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant