diff --git a/_/__init__.py b/_/__init__.py index f6bc0b8..2cdb4c2 100644 --- a/_/__init__.py +++ b/_/__init__.py @@ -91,7 +91,7 @@ class Finder: filename = os.path.join(dirname, fullname) if os.path.exists(filename): return UnderScoreLoader(filename) - else if os.path.exists(filename + ".us"): + elif os.path.exists(filename + ".us"): return UnderScoreLoader(filename + ".us") class UnderScoreLoader: diff --git a/setup.py b/setup.py index a738dfe..51c07c0 100644 --- a/setup.py +++ b/setup.py @@ -10,10 +10,10 @@ with open("README.md") as f: setup( name = '_', - description = 'Allows you to write Python scripts using exclusively _', + description = 'Allows you to write Python scripts using _ exclusively', author = "Veit Heller", - author_email = "veit.heller@htw-berlin.de", - version = "0.1.0 Alpha", + author_email = "veit@veitheller.de", + version = "1.0 Stable", long_description = long_description, url = "https://github.com/hellerve/_", packages = ['_',],