From 70a6b49821a3226f55e9716f32d802d06640cb89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Thu, 12 Feb 2004 17:35:32 +0000 Subject: Replace backticks with repr() or "%r" From SF patch #852334. --- Lib/lib-tk/FileDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/lib-tk/FileDialog.py') diff --git a/Lib/lib-tk/FileDialog.py b/Lib/lib-tk/FileDialog.py index 323dc29704..5e848daa73 100644 --- a/Lib/lib-tk/FileDialog.py +++ b/Lib/lib-tk/FileDialog.py @@ -244,7 +244,7 @@ class SaveFileDialog(FileDialog): return d = Dialog(self.top, title="Overwrite Existing File Question", - text="Overwrite existing file %s?" % `file`, + text="Overwrite existing file %r?" % (file,), bitmap='questhead', default=1, strings=("Yes", "Cancel")) -- cgit v1.2.1