aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2011-12-28 11:03:41 -0500
committerWaylan Limberg <waylan@gmail.com>2011-12-28 11:03:41 -0500
commit4cff7fe3028722323912d4bcc206e020420d8e18 (patch)
tree4f6d4bd4c4ffd74e99c8853ab876d5b29db237e7
parent4daad37ae0108e2f5459d93b97202af39b4dd935 (diff)
downloadmarkdown-4cff7fe3028722323912d4bcc206e020420d8e18.tar.gz
markdown-4cff7fe3028722323912d4bcc206e020420d8e18.tar.bz2
markdown-4cff7fe3028722323912d4bcc206e020420d8e18.zip
Fixed issue #66. Silly error. Not sure why the shebang lines were capitalized. Thanks for the report.
-rw-r--r--markdown/extensions/def_list.py2
-rw-r--r--markdown/extensions/tables.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/markdown/extensions/def_list.py b/markdown/extensions/def_list.py
index b5ba92f..da1726a 100644
--- a/markdown/extensions/def_list.py
+++ b/markdown/extensions/def_list.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env Python
+#!/usr/bin/env python
"""
Definition List Extension for Python-Markdown
=============================================
diff --git a/markdown/extensions/tables.py b/markdown/extensions/tables.py
index f780bb3..1388cb5 100644
--- a/markdown/extensions/tables.py
+++ b/markdown/extensions/tables.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env Python
+#!/usr/bin/env python
"""
Tables Extension for Python-Markdown
====================================