File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 35
35
import multiprocessing
36
36
import collections
37
37
import argparse
38
- from TotalDepth .util import CmdCommonOpts
38
+ from TotalDepth .util import CmnCmdOpts
39
39
from TotalDepth .util import FileBuffer
40
40
41
41
@@ -224,7 +224,7 @@ def __init__(self, theF):
224
224
attr ,
225
225
attr ,
226
226
typeCode ,
227
- name ,
227
+ name . decode ( "UTF8" ) ,
228
228
)
229
229
)
230
230
tellPrev = self ._fb .tell ()
@@ -237,7 +237,7 @@ def __init__(self, theF):
237
237
238
238
def main ():
239
239
print ('Cmd: %s' % ' ' .join (sys .argv ))
240
- op = CmdCommonOpts . retOptParser (
240
+ op = CmnCmdOpts . argParserIn (
241
241
desc = 'Searches for structures that look like RP66v1 EFLRs' ,
242
242
prog = '%(prog) ' ,
243
243
version = __version__ ,
@@ -252,10 +252,10 @@ def main():
252
252
clkStart = time .clock ()
253
253
timStart = time .time ()
254
254
# Initialise logging etc.
255
- logging .basicConfig (level = args .loglevel ,
256
- format = '%(asctime)s %(levelname)-8s %(message)s' ,
255
+ # logging.basicConfig(level=args.loglevel,
256
+ # format='%(asctime)s %(levelname)-8s %(message)s',
257
257
#datefmt='%y-%m-%d % %H:%M:%S',
258
- stream = sys .stdout )
258
+ # stream=sys.stdout)
259
259
# Your code here
260
260
myObj = ScanV1EFLR (args .infile )
261
261
You can’t perform that action at this time.
0 commit comments