X Tutup
Skip to content

Commit 5ddca2d

Browse files
committed
urwid: Add missing setlocale call.
1 parent 5fdf7ce commit 5ddca2d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bpython/urwid.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,7 @@ def tab(self, back=False):
10981098
self._completion_update_suppressed = False
10991099

11001100
def main(args=None, locals_=None, banner=None):
1101+
locale.setlocale(locale.LC_ALL, "")
11011102
translations.init()
11021103

11031104
# TODO: maybe support displays other than raw_display?

0 commit comments

Comments
 (0)
X Tutup