Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Made some major typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
myles committed Jan 20, 2010
1 parent d0cf6a5 commit 04c5dcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -10,15 +10,15 @@
def read(*path):
return open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *path)).read()

blog = __import__('blog', {}, {}, [''])
bookmarks = __import__('bookmarks', {}, {}, [''])

packages, data_files = [], []

root_dir = os.path.dirname(__file__)
if root_dir != '':
os.chdir(root_dir)

blog_dir = "blog"
bookmarks_dir = "bookmarks"

def osx_install_data(install_data):
def finalize_options(self):
Expand All @@ -39,7 +39,7 @@ def fullsplit(path, result=None):
scheme['data'] = scheme['purelib']


for dirpath, dirnames, filenames in os.walk(blog_dir):
for dirpath, dirnames, filenames in os.walk(bookmarks_dir):
# Ignore dirnames that start with '.'
for i, dirname in enumerate(dirnames):
if dirname.startswith("."): del dirnames[i]
Expand Down

0 comments on commit 04c5dcf

Please sign in to comment.