Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions poxx.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os.path
import re
import polib # from http://bitbucket.org/izi/polib
import HTMLParser
from six.moves import html_parser as HTMLParser

VERSION_STR = '1.1.1'

Expand Down Expand Up @@ -181,4 +181,4 @@ def diff_one_file(fname, canon_name):
else:
report_msg = munge_one_file(fname, options.blank, canon_name=options.canonical_po_file)

print report_msg
print(report_msg)
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
polib
six
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

install_requires = [
'polib',
'six',
]

test_requires = ['pytest']
Expand Down