Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
ukbparse
Commits
0bb5527d
Commit
0bb5527d
authored
May 08, 2019
by
Paul McCarthy
🚵
Browse files
BF: Add new columns before old ones are dropped - vartable entry was otherwise
potentially being clobbered
parent
459df7a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
ukbparse/processing.py
View file @
0bb5527d
...
@@ -170,8 +170,8 @@ def runProcess(proc, dtable, vids):
...
@@ -170,8 +170,8 @@ def runProcess(proc, dtable, vids):
else
:
else
:
raise
error
raise
error
if
len
(
remove
)
>
0
:
dtable
.
removeColumns
(
remove
)
if
len
(
add
)
>
0
:
dtable
.
addColumns
(
add
,
addvids
)
if
len
(
add
)
>
0
:
dtable
.
addColumns
(
add
,
addvids
)
if
len
(
remove
)
>
0
:
dtable
.
removeColumns
(
remove
)
class
NoSuchProcessError
(
Exception
):
class
NoSuchProcessError
(
Exception
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment