Skip to content

Commit

Permalink
gh-66 don't use string format function
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ch1 committed Feb 22, 2012
1 parent 2cfb144 commit 82b36e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ycsb
Expand Up @@ -48,7 +48,7 @@ def usage():

print "\nDatabases:"
for db in sorted(DATABASES.keys()):
print " {0:13} {1}".format(db, BASE_URL + db.split("-")[0])
print " %s %s" % (db.ljust(13), BASE_URL + db.split("-")[0])

print """\nWorkload Files:
There are various predefined workloads under workloads/ directory.
Expand Down

0 comments on commit 82b36e3

Please sign in to comment.