Skip to content

Commit

Permalink
Remove redundant os.path.join()
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Apr 10, 2016
1 parent 0af1770 commit 027a040
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/nikola.py
Expand Up @@ -825,7 +825,7 @@ def __init__(self, **config):
self._set_global_context()

# Set persistent state facility
self.state = Persistor(os.path.join('state_data.json'))
self.state = Persistor('state_data.json')

# Set cache facility
self.cache = Persistor(os.path.join(self.config['CACHE_FOLDER'], 'cache_data.json'))
Expand Down

0 comments on commit 027a040

Please sign in to comment.