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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-09-07 19:17:42 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-09-07 19:17:42 +0400
commit115b25673832049b746835357d63d8d2dbee5229 (patch)
treeca36db0fe4063108ca5820e1d76ae0496fb88f15 /doc
parente53bbc7ab7568e315dc3cf06dd5e989300c98786 (diff)
ran through pep8 checker
Diffstat (limited to 'doc')
-rw-r--r--doc/blender.1.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/blender.1.py b/doc/blender.1.py
index 7c7fc987c64..086c99e70e5 100644
--- a/doc/blender.1.py
+++ b/doc/blender.1.py
@@ -91,25 +91,25 @@ while lines:
l = lines.pop(0)
if l.startswith("Environment Variables:"):
fw('.SH "ENVIRONMENT VARIABLES"\n')
- elif l.endswith(":"): # one line
+ elif l.endswith(":"): # one line
fw('.SS "%s"\n\n' % l)
- elif l.startswith("-") or l.startswith("/"): # can be multi line
+ elif l.startswith("-") or l.startswith("/"): # can be multi line
fw('.TP\n')
fw('.B %s\n' % man_format(l))
while lines:
# line with no
- if lines[0].strip() and len(lines[0].lstrip()) == len(lines[0]): # no white space
+ if lines[0].strip() and len(lines[0].lstrip()) == len(lines[0]): # no white space
break
- if not l: # second blank line
+ if not l: # second blank line
fw('.IP\n')
else:
fw('.br\n')
l = lines.pop(0)
- l = l[1:] # remove first whitespace (tab)
+ l = l[1:] # remove first whitespace (tab)
fw('%s\n' % man_format(l))