Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/
2 changes: 2 additions & 0 deletions config.cnf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[directory]
book_dir=./books
Binary file removed rhuthmos/__init__.pyc
Binary file not shown.
Binary file removed rhuthmos/rhuthmos.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion rhymeless.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def get_rhymeless_sqlite_con_and_cursor(config):
print err
#print args
#sys.exit()
if ("-h", "") in optlist:
if "-h" in optlist:
print help
sys.exit()
if len(args) > 0 and args[0] in set(["plain", "html", "sqlite"]):
Expand Down