Fastai.column_data import throws exception

When I try to import fastai.column_data I get this exception:


  File "/home/paperspace/anaconda3/envs/fastai/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 2961, in run_code
    exec(code_obj, self.user_global_ns, self.user_ns)

  File "<ipython-input-4-7d0fa0b79980>", line 2, in <module>
    import fastai.column_data

  File "/home/paperspace/fastai/courses/dl1/fastai/column_data.py", line 32
    def __init__(self, cats, conts, y, is_reg, is_multi):
                                                         ^
IndentationError: unindent does not match any outer indentation level```

Did a file search for `column_data.py`  in the repo and came up with only this: `old/fastai/column_data.py`

Where is your fastai symlink pointing? It needs to point to old/fastai in your checked out folder. If you do git pull that should be what you get by default now (the upcoming v1 is in the root of the repo).

Thanks Jeremy. I resolved the problem by running git pull from ~/fastai/old