Skip to content

Commit e5d74b3

Browse files
committed
Merge pull request #83 from jmsbrry/master
Update README.rst
2 parents 39dcfad + 35e666a commit e5d74b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ For example, running ``futurize -w mymodule.py`` turns this Python 2 code:
181181
print 'Hello',
182182
print name
183183
184-
print 'What's your name?',
184+
print "What's your name?",
185185
name = raw_input()
186186
greet(name)
187187
@@ -201,7 +201,7 @@ into this code which runs on both Py2 and Py3:
201201
print('Hello', end=' ')
202202
print(name)
203203
204-
print('What's your name?', end=' ')
204+
print("What's your name?", end=' ')
205205
name = input()
206206
greet(name)
207207

0 commit comments

Comments
 (0)