Skip to content

Commit 9a66cad

Browse files
author
Sebastian Ramacher
committed
Add missing newlines.
1 parent df61f31 commit 9a66cad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bpython/urwid.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ def main(args=None, locals_=None, banner=None):
11011101
print ' %-4s\t%s' % (r.shortName, r.description)
11021102
except ImportError:
11031103
sys.stderr.write('No reactors are available. Please install '
1104-
'twisted for reactor support.')
1104+
'twisted for reactor support.\n')
11051105
return
11061106

11071107
palette = [
@@ -1120,7 +1120,7 @@ def main(args=None, locals_=None, banner=None):
11201120
from twisted.application import reactors
11211121
except ImportError:
11221122
sys.stderr.write('No reactors are available. Please install '
1123-
'twisted for reactor support.')
1123+
'twisted for reactor support.\n')
11241124
return
11251125
try:
11261126
# XXX why does this not just return the reactor it installed?
@@ -1149,7 +1149,7 @@ def main(args=None, locals_=None, banner=None):
11491149
from twisted.application import service
11501150
except ImportError:
11511151
sys.stderr.write('No twisted plugins are available. Please install '
1152-
'twisted for twisted plugin support.')
1152+
'twisted for twisted plugin support.\n')
11531153
return
11541154

11551155
for plug in plugin.getPlugins(service.IServiceMaker):

0 commit comments

Comments
 (0)