Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_text.py')
-rw-r--r--release/scripts/startup/bl_ui/space_text.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_text.py b/release/scripts/startup/bl_ui/space_text.py
index d0a3a53aa85..c3b2e30cb12 100644
--- a/release/scripts/startup/bl_ui/space_text.py
+++ b/release/scripts/startup/bl_ui/space_text.py
@@ -66,9 +66,11 @@ class TEXT_HT_header(Header):
row = layout.row()
if text.filepath:
if text.is_dirty:
- row.label(text="File" + ": *%r " % text.filepath + "(unsaved)")
+ row.label(text="File" + ": *%r " %
+ text.filepath + "(unsaved)")
else:
- row.label(text="File" + ": %r" % text.filepath)
+ row.label(text="File" + ": %r" %
+ text.filepath)
else:
row.label(text="Text: External"
if text.library