Browse Source

Issue #119: Bug Fix. Relative path was used in the server as the sitepath

main
Lakshmi Vyasarajan 13 years ago
parent
commit
628e00a491
4 changed files with 7 additions and 3 deletions
  1. +4
    -0
      CHANGELOG.rst
  2. +1
    -1
      README.rst
  3. +1
    -1
      hyde/engine.py
  4. +1
    -1
      hyde/version.py

+ 4
- 0
CHANGELOG.rst View File

@@ -1,3 +1,7 @@
Version 0.8.5a7
============================================================
* Bug Fix: Relative path was used in the server as the sitepath (Issue #119)

Version 0.8.5a6
============================================================



+ 1
- 1
README.rst View File

@@ -1,4 +1,4 @@
Version 0.8.5a6
Version 0.8.5a7

A brand new **hyde**
====================


+ 1
- 1
hyde/engine.py View File

@@ -135,7 +135,7 @@ class Engine(Application):
"""
sitepath = self.main(args)
config_file = sitepath.child(args.config)
site = self.make_site(args.sitepath, args.config, args.deploy)
site = self.make_site(sitepath, args.config, args.deploy)
from hyde.server import HydeWebServer
server = HydeWebServer(site, args.address, args.port)
logger.info("Starting webserver at [%s]:[%d]", args.address, args.port)


+ 1
- 1
hyde/version.py View File

@@ -3,4 +3,4 @@
Handles hyde version
TODO: Use fabric like versioning scheme
"""
__version__ = '0.8.5a6'
__version__ = '0.8.5a7'

Loading…
Cancel
Save