| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2066572 commit 23ce07f
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -974,7 +974,7 @@ def p_key(self, key): | |||
| 974 | 974 | try: | |
| 975 | 975 | source = self.get_source_of_current_name() | |
| 976 | 976 | except repl.SourceNotFound as e: | |
| 977 | - self.statusbar.message(str(e)) | ||
| 977 | + self.statusbar.message('%s' % (e, )) | ||
| 978 | 978 | else: | |
| 979 | 979 | if config.highlight_show_source: | |
| 980 | 980 | source = format(PythonLexer().get_tokens(source), | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1702,7 +1702,7 @@ def show_source(self): | |||
| 1702 | 1702 | try: | |
| 1703 | 1703 | source = self.get_source_of_current_name() | |
| 1704 | 1704 | except SourceNotFound as e: | |
| 1705 | - self.status_bar.message(str(e)) | ||
| 1705 | + self.status_bar.message('%s' % (e, )) | ||
| 1706 | 1706 | else: | |
| 1707 | 1707 | if self.config.highlight_show_source: | |
| 1708 | 1708 | source = format(PythonLexer().get_tokens(source), | |
| Back | FazBrowse Home | New Git URL |
0 commit comments