Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
esc committed Apr 19, 2015
1 parent 7f72817 commit 42ec9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bcolz/ctable.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def addcol(self, newcol, name=None, pos=None, move=False, **kwargs):
shutil.move(newcol.rootdir, col_rootdir)
newcol.rootdir = col_rootdir
else: # copy the the carray
shutil.copytree(newcol.rootdir, col_rootdir)
newcol = newcol.copy(rootdir=col_rootdir)
elif isinstance(newcol, (np.ndarray, bcolz.carray)):
newcol = bcolz.carray(newcol, **kwargs)
elif type(newcol) in (list, tuple):
Expand Down

0 comments on commit 42ec9a8

Please sign in to comment.