I don't think you need to include *.pyc files in this repository. They are just Python byte-code files that are built to save time. In some cases, errors can occur by leaving these files inside repo.
I removed hangupsbot.pyc as it was the only *.pyc file in the repository. It is out of date with hangupsbot.py by 3 months anyways.
I added *.pyc to the .gitignore so that git will ignore commiting *.pyc files.
Hi!
I don't think you need to include
*.pyc
files in this repository. They are just Python byte-code files that are built to save time. In some cases, errors can occur by leaving these files inside repo.I removed
hangupsbot.pyc
as it was the only*.pyc
file in the repository. It is out of date withhangupsbot.py
by 3 months anyways.I added
*.pyc
to the.gitignore
so that git will ignore commiting*.pyc
files.Thanks!