Skip to content

Commit b50250a

Browse files
committed
Merge pull request bpython#601 from adityagupta679/patch-1
Fixing Windows Python2 compatibility
2 parents b3692e6 + 4189d62 commit b50250a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def make_colors(config):
281281
}
282282

283283
if platform.system() == 'Windows':
284-
c = dict(c.items() |
284+
c = dict(list(c.items()) +
285285
[
286286
('K', 8),
287287
('R', 9),

0 commit comments

Comments
 (0)