Skip to content

Commit b0a385a

Browse files
committed
use ∎ instead of *
1 parent 0a8dfb8 commit b0a385a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_hacks/bar_chart.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def run(input_stream, options):
5656
scale = int(math.ceil(float(max_value) / value_characters))
5757
scale = max(1, scale)
5858

59-
print "# each * represents a count of %d" % scale
59+
print "# each represents a count of %d" % scale
6060

6161
if options.sort_values:
6262
data = [[value, key] for key, value in data.items()]
@@ -72,7 +72,7 @@ def run(input_stream, options):
7272

7373
format = "%" + str(max_length) + "s [%6d] %s"
7474
for value,key in data:
75-
print format % (key[:max_length], value, (value / scale) * "*")
75+
print format % (key[:max_length], value, (value / scale) * "")
7676

7777
if __name__ == "__main__":
7878
parser = OptionParser()

0 commit comments

Comments
 (0)