summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-11-07 16:03:39 -0800
committerChris McDonough <chrism@plope.com>2011-11-07 16:03:39 -0800
commit8751ae81b6d6c1bf6ccf18d522dafc38a19bbb76 (patch)
tree8489923d74211f26a3c6de02802fa51adc5dec7d
parente377a7253769cc54422b4319da3ae231b66328f5 (diff)
parenta087a7910f2dadab029ba409da9395ecc2b56dfa (diff)
downloadpyramid-8751ae81b6d6c1bf6ccf18d522dafc38a19bbb76.tar.gz
pyramid-8751ae81b6d6c1bf6ccf18d522dafc38a19bbb76.tar.bz2
pyramid-8751ae81b6d6c1bf6ccf18d522dafc38a19bbb76.zip
Merge branch 'master' of https://github.com/RichardBarrell/pyramid into RichardBarrell-master
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--pyramid/scripts/pcreate.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 4ac88fc15..e1af0aab1 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -149,6 +149,8 @@ Contributors
- Manuel Hermann, 2011/07/11
+- Richard Barrell, 2011/11/07
+
- Chris Shenton, 2011/11/07
- Ken Manheimer, 2011/11/07
diff --git a/pyramid/scripts/pcreate.py b/pyramid/scripts/pcreate.py
index 20e531956..f559e4f17 100644
--- a/pyramid/scripts/pcreate.py
+++ b/pyramid/scripts/pcreate.py
@@ -66,7 +66,7 @@ class PCreateCommand(object):
options = self.options
args = self.args
project_name = os.path.basename(args[0])
- output_dir = os.path.normpath(args[0])
+ output_dir = os.path.abspath(os.path.normpath(args[0]))
pkg_name = _bad_chars_re.sub('', project_name.lower())
safe_name = pkg_resources.safe_name(project_name)
egg_name = pkg_resources.to_filename(safe_name)