Skip to content

Commit

Permalink
Removing useless warning function
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Jan 3, 2017
1 parent cd4f5d5 commit 4224863
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions pandoc_numbering.py
Expand Up @@ -4,8 +4,6 @@
Pandoc filter to number all kinds of things.
"""

from __future__ import print_function

from pandocfilters import walk, stringify, Str, Space, Para, BulletList, Plain, Strong, Span, Link, Emph, RawInline, RawBlock, Header
from functools import reduce
import json
Expand All @@ -16,9 +14,6 @@
import unicodedata
import subprocess

def warning(*objs):
print("WARNING: ", *objs, file=sys.stderr)

count = {}
information = {}
collections = {}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -28,7 +28,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='2.0.1',
version='2.0.2',

# The project's description
description='A pandoc filter for automatic numbering',
Expand Down

0 comments on commit 4224863

Please sign in to comment.