We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a17d72 commit fab3984Copy full SHA for fab3984
bpython/repl.py
@@ -679,7 +679,7 @@ def do_pastebin(self, s):
679
"""Actually perform the upload."""
680
if s == self.prev_pastebin_content:
681
self.interact.notify(_('Duplicate pastebin. Previous URL: %s. Removal URL: %s') %
682
- (self.prev_pastebin_url, self.prev_removal_url))
+ (self.prev_pastebin_url, self.prev_removal_url), 10)
683
return self.prev_pastebin_url
684
685
if self.config.pastebin_helper:
@@ -719,7 +719,7 @@ def do_pastebin_json(self, s):
719
self.prev_pastebin_url = paste_url
720
self.prev_removal_url = removal_url
721
self.interact.notify(_('Pastebin URL: %s - Removal URL: %s') %
722
- (paste_url, removal_url))
+ (paste_url, removal_url), 10)
723
724
return paste_url
725
0 commit comments