Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

Commit

Permalink
Fix a theme install bug
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsky committed Mar 1, 2014
1 parent 36cf27a commit ca640d2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catsup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Catsup, a lightweight static blog generator
"""

__version__ = '0.3.4'
__version__ = '0.3.5'
2 changes: 1 addition & 1 deletion catsup/themes/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def install_from_git(clone_url):
if os.path.exists(theme.name):
shutil.rmtree(theme.name)

os.rename(tmp_dir, theme.name)
shutil.move(tmp_dir, theme.name)
logger.info("Installed theme {name}".format(name=theme.name))


Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
==========

Version 0.3.5
--------------

+ Fix a theme install bug

Version 0.3.4
--------------

Expand Down

0 comments on commit ca640d2

Please sign in to comment.