Skip to content

Commit d26ba4e

Browse files
authored
Merge pull request #118 from cclauss/patch-1
NameException --> NameError
2 parents 8c08454 + c6ea32c commit d26ba4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/chat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
try:
1515
raw_input # Python 2
16-
except NameException:
16+
except NameError:
1717
raw_input = input # Python 3
1818

1919
def chat_task(ctx, pipe):

0 commit comments

Comments
 (0)