Skip to content

Commit

Permalink
Quick Python 2.6 formatting fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
richrd committed Mar 3, 2016
1 parent 6a32ee0 commit 7664ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suplemon/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def init(self):
# Now import curses, otherwise ESCDELAY won't have any effect
import curses
import curses.textpad # noqa
self.logger.debug("Loaded curses {}".format(curses.version.decode()))
self.logger.debug("Loaded curses {0}".format(curses.version.decode()))

def run(self, func):
"""Run the application main function via the curses wrapper for safety."""
Expand Down

0 comments on commit 7664ca6

Please sign in to comment.