projects
/
pinmux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1459155
)
replace split from whitespace to tabspace
author
rishucoding
<rishucoding@gmail.com>
Tue, 12 Jun 2018 09:27:17 +0000
(14:57 +0530)
committer
rishucoding
<rishucoding@gmail.com>
Tue, 12 Jun 2018 09:27:17 +0000
(14:57 +0530)
src/parse.py
patch
|
blob
|
history
diff --git
a/src/parse.py
b/src/parse.py
index 02c9ea94e241f996b803593393cb9af063ddf44e..61bc8e12a855d760fc8dd602310119fdf8d6e609 100644
(file)
--- a/
src/parse.py
+++ b/
src/parse.py
@@
-45,7
+45,7
@@
class Parse(object):
fname = os.path.join(pth, fname)
with open(fname) as pinmapfile:
for lineno, line in enumerate(pinmapfile):
- line1 = line.split()
+ line1 = line.split(
'\t'
)
if len(line1) <= 1:
continue
self.pinnumbers.append(int(line1[0]))