diff options
-rw-r--r-- | confman.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ class SymlinkConfigAction(ConfigAction): else: self._makedirs() - relsource = os.path.relpath(source, self.config.dest) + relsource = os.path.normpath(os.path.relpath(source, os.path.join(self.config.dest, self.relpath))) os.symlink(relsource, dest) print "Created new link: "+dest+" => "+source |