Ben
Ben

Reputation: 178

AttributeError: module 'inspect' has no attribute 'getsource' using Textmate

This used to work in Textmate

#!/usr/bin/env python3
from forecastiopy import *

Recently it stopped working only if the file is saved, the same code works in an unsaved file. (I must've messed it up somehow, but I'm not sure how to fix it). Any help is greatly appreciated.

python3 is /usr/local/bin/python3 & /usr/local/bin is in Textmate's PATH

macOS Mojave 10.14.2 Python 3.7.2 TextMate 2.0-rc.10

Upvotes: 2

Views: 3229

Answers (1)

Ben
Ben

Reputation: 178

I fixed it. I had a user sample script called inspect.py which was using the inspect module in the same directory which was being imported instead of the actual module.

Upvotes: 7

Related Questions