diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-01-09 10:58:11 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-01-09 10:58:11 -0500 |
commit | 708e2cbee48f80c25ff0f6a94de8b6bcbe116567 (patch) | |
tree | b5e08b697e5c27c2cb6cfcc499836c4e353f9457 | |
parent | 682733393476e1faef2a06b373af042c1bf8259c (diff) | |
download | markdown-708e2cbee48f80c25ff0f6a94de8b6bcbe116567.tar.gz markdown-708e2cbee48f80c25ff0f6a94de8b6bcbe116567.tar.bz2 markdown-708e2cbee48f80c25ff0f6a94de8b6bcbe116567.zip |
Fixed line length of previous commit. Some of us still use (and prefer) text editors on the console. Let's keep lines under 80 characters in length.
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -116,8 +116,8 @@ class build_docs(Command): return 'Python Markdown' def run(self): - # Before importing markdown, we have to tweak sys.path because we have to import it from - # the build directory (we might have ran 2to3 on the library) + # Before importing markdown, tweak sys.path to import from the + # build directory (2to3 might have run on the library). bld_cmd = self.get_finalized_command("build") sys.path.insert(0, bld_cmd.build_lib) try: |