Fixes 101
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
import codecs
|
||||||
|
|
||||||
|
def unescaped_str(arg_str):
|
||||||
|
return arg_str.encode('latin-1', 'backslashreplace').decode('unicode-escape')
|
||||||
|
|
||||||
|
|
||||||
def __addInputOption(optionManager):
|
def __addInputOption(optionManager):
|
||||||
|
|
||||||
optionManager.add_argument(
|
optionManager.add_argument(
|
||||||
@ -133,7 +139,7 @@ def __addTabularOption(optionManager):
|
|||||||
group.add_argument('--sep',
|
group.add_argument('--sep',
|
||||||
action="store", dest="obi:sep",
|
action="store", dest="obi:sep",
|
||||||
default="\t",
|
default="\t",
|
||||||
type=str,
|
type=unescaped_str,
|
||||||
help="Column separator")
|
help="Column separator")
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user