##// END OF EJS Templates
py3: compare response of crecord's confirmationwindow with str...
Denis Laxalde -
r43794:117b41b1 stable
parent child Browse files
Show More
@@ -1741,8 +1741,8 b' are you sure you want to review/edit and'
1741 with self.ui.timeblockedsection(b'crecord'):
1741 with self.ui.timeblockedsection(b'crecord'):
1742 response = self.confirmationwindow(confirmtext)
1742 response = self.confirmationwindow(confirmtext)
1743 if response is None:
1743 if response is None:
1744 response = b"n"
1744 response = "n"
1745 if response.lower().startswith(b"y"):
1745 if response.lower().startswith("y"):
1746 return True
1746 return True
1747 else:
1747 else:
1748 return False
1748 return False
General Comments 0
You need to be logged in to leave comments. Login now