Skip to content

Commit 5173005

Browse files
noatgnuldko
andauthored
Update _episodes/12-cmdline.md
Co-authored-by: Lauren Ko <[email protected]>
1 parent 82e6e86 commit 5173005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/12-cmdline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ the program now does everything we set out to do.
697697
> >
698698
> > operator = sys.argv[1]
699699
> > assert operator in ['--add', '--subtract', '--multiply', '--divide'], \
700-
> > 'Operator is not one of add, subtract, multiply, or divide: bailing out'
700+
> > 'Operator is not one of --add, --subtract, --multiply, or --divide: bailing out'
701701
> > try:
702702
> > operand1, operand2 = float(sys.argv[2]), float(sys.argv[3])
703703
> > except ValueError:

0 commit comments

Comments
 (0)