Skip to content

Commit

Permalink
casting config values to string before printing them.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Toews authored and Ben Toews committed Nov 14, 2012
1 parent 7f47151 commit d776161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbqsql/menu/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def run_config(self):
key = config_keys[ki]
print "\t%d) %s" % (ki,key)
if self[key]['value'] is not None:
print "\t Value: %s" % self[key]['value']
print "\t Value: %s" % str(self[key]['value'])
print "\n\t99) Go back to the main menu"
print "\n"
self.validate()
Expand Down

1 comment on commit d776161

@btoews
Copy link
Contributor

@btoews btoews commented on d776161 Nov 14, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

closes #41

Please sign in to comment.