Skip to content

Commit d05588d

Browse files
committed
Fix issue with the -s argument.
1 parent e947f66 commit d05588d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ script:
100100
- coverage run setup.py test
101101
- coverage xml
102102
- domain2idna -d аррӏе.com
103+
- domain2idna -s аррӏе.com google.com
103104
- domain2idna -f .travis/list_of_domain
104105
- domain2idna -f .travis/list_of_domain -o list_of_domain_converted
105106
- cat list_of_domain_converted

domain2idna/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
from .converter import Converter
5151

52-
VERSION = "1.10.0"
52+
VERSION = "1.10.1"
5353

5454

5555
def domain2idna(subject, encoding="utf-8"):

domain2idna/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def tool(): # pragma: no cover
139139
parser.add_argument(
140140
"-s",
141141
"--subject",
142-
type=list,
142+
type=str,
143143
nargs="+",
144144
help="Sets the subjects to convert.",
145145
default=[]

0 commit comments

Comments
 (0)