X Tutup
Skip to content

Commit c38d9e7

Browse files
committed
Merge. Remove shebang and +x flag in cli.py and urwid.py (see b3caf67ca815).
2 parents 5445a07 + 074d873 commit c38d9e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bpython/cli.py

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
22
# The MIT License
33
#
44
# Copyright (c) 2008 Bob Farrell

bpython/urwid.py

100755100644
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
22
#
33
# The MIT License
44
#
@@ -392,7 +392,7 @@ def __init__(self, config, statusbar=None):
392392
def confirm(self, q):
393393
"""Ask for yes or no and return boolean"""
394394
return self.statusbar.prompt(q).lower().startswith('y')
395-
395+
396396
def notify(self, s, n=10):
397397
return self.statusbar.message(s, n)
398398

@@ -598,7 +598,7 @@ def getstdout(self):
598598
def ask_confirmation(self, q):
599599
"""Ask for yes or no and return boolean"""
600600
return self.statusbar.prompt(q).lower().startswith('y')
601-
601+
602602
def reevaluate(self):
603603
"""Clear the buffer, redraw the screen and re-evaluate the history"""
604604

0 commit comments

Comments
 (0)
X Tutup