summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:52:56 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:52:56 (GMT)
commit230ad2cb8b0fe7838f159c0f83730260663c0096 (patch)
tree97ee62f447b62e19147037807951e866f1daaa84 /Mac
parentc42c0b76c6e353bdf836138151b6ee6274a241a8 (diff)
downloadcpython-230ad2cb8b0fe7838f159c0f83730260663c0096.zip
cpython-230ad2cb8b0fe7838f159c0f83730260663c0096.tar.gz
cpython-230ad2cb8b0fe7838f159c0f83730260663c0096.tar.bz2
Different default location for distribution templates
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/MkDistr.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/scripts/MkDistr.py b/Mac/scripts/MkDistr.py
index f2a1c00..ceb0aff 100644
--- a/Mac/scripts/MkDistr.py
+++ b/Mac/scripts/MkDistr.py
@@ -200,11 +200,11 @@ class Main:
if not ok:
sys.exit(0)
os.chdir(fss.as_pathname())
- if not os.path.isdir(':(MkDistr)'):
- os.mkdir(':(MkDistr)')
+ if not os.path.isdir(':Mac:Distributions'):
+ os.mkdir(':Mac:Distributions')
typedist = GetType()
- self.inc = IncMatcher(':(MkDistr):%s.include'%typedist)
- self.exc = ExcMatcher(':(MkDistr):%s.exclude'%typedist)
+ self.inc = IncMatcher(':Mac:Distributions:%s.include'%typedist)
+ self.exc = ExcMatcher(':Mac:Distributions:%s.exclude'%typedist)
self.ui = MkDistrUI(self)
self.ui.mainloop()