diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-03-11 00:21:01 +0000 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-03-11 00:21:01 +0000 |
commit | 354e5aa77aa1a402fc0a99e6be35d964a2be8450 (patch) | |
tree | a7d0d318b8afd5ee651c75a8bcfe415a4e8ae7ae | |
parent | d16ac3518d6b8d5fdc61a9cf3d33c9057190c115 (diff) | |
download | markdown-354e5aa77aa1a402fc0a99e6be35d964a2be8450.tar.gz markdown-354e5aa77aa1a402fc0a99e6be35d964a2be8450.tar.bz2 markdown-354e5aa77aa1a402fc0a99e6be35d964a2be8450.zip |
Removed print_error method as it's not being used anywhere.
-rw-r--r-- | markdown.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/markdown.py b/markdown.py index e0e6bba..16632be 100644 --- a/markdown.py +++ b/markdown.py @@ -1123,11 +1123,6 @@ class BlockGuru: allowBlank = 1) -def print_error(string): - """Print an error string to stderr""" - sys.stderr.write(string +'\n') - - def dequote(string): """ Removes quotes from around a string """ if ( ( string.startswith('"') and string.endswith('"')) |