summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-03-13 17:17:39 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-03-13 17:17:39 +0000
commita697673924fb876b4b9e7b4a27512bc36454fdbc (patch)
tree8ace63781a8717adc1437814aa6db7f17726b1ef /app-editors/leo/files
parentMask dev-perl/XML-LibXML-Common and dev-perl/Email-Simple-Creator (diff)
downloadgentoo-2-a697673924fb876b4b9e7b4a27512bc36454fdbc.tar.gz
gentoo-2-a697673924fb876b4b9e7b4a27512bc36454fdbc.tar.bz2
gentoo-2-a697673924fb876b4b9e7b4a27512bc36454fdbc.zip
Delete older ebuilds.
Diffstat (limited to 'app-editors/leo/files')
-rw-r--r--app-editors/leo/files/leoConfig.py.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-editors/leo/files/leoConfig.py.patch b/app-editors/leo/files/leoConfig.py.patch
deleted file mode 100644
index 8d16872a9071..000000000000
--- a/app-editors/leo/files/leoConfig.py.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- src/leoConfig.py 2004-07-20 08:11:58.000000000 -0700
-+++ leoConfig.py 2004-11-08 22:49:31.055019376 -0800
-@@ -9,6 +9,7 @@
- import os
- import string
- import sys
-+import shutil
-
- class baseConfig:
- """The base class for Leo's configuration handler."""
-@@ -84,10 +85,12 @@
-
- def init (self):
-
-- try:
-- self.configDir = sys.leo_config_directory
-- except:
-- self.configDir = g.os_path_join(g.app.loadDir,"..","config")
-+ self.configDir = os.path.expanduser("~/.leo")
-+ if not os.path.exists(self.configDir):
-+ os.mkdir(self.configDir)
-+ config_file = "%s/leoConfig.txt" % \
-+ g.os_path_join(g.app.loadDir,"..","config")
-+ shutil.copy(config_file, self.configDir)
-
- self.configFileName = g.os_path_join(self.configDir,"leoConfig.txt")
-