diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2008-03-01 11:51:10 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2008-03-01 11:51:10 +0000 |
commit | 342851fe13ab3511b45e6b062b7ef34463f24156 (patch) | |
tree | 24a966f6600c0a2294be582f468522f69ddb57b5 /app-editors/leo/files | |
parent | remove old (diff) | |
download | gentoo-2-342851fe13ab3511b45e6b062b7ef34463f24156.tar.gz gentoo-2-342851fe13ab3511b45e6b062b7ef34463f24156.tar.bz2 gentoo-2-342851fe13ab3511b45e6b062b7ef34463f24156.zip |
Version bump (bug #153233). Dropped old version.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-editors/leo/files')
-rw-r--r-- | app-editors/leo/files/leoGlobals-4.4.1_beta2.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch b/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch deleted file mode 100644 index ad16196bcbbd..000000000000 --- a/app-editors/leo/files/leoGlobals-4.4.1_beta2.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- src/leoGlobals.py.old 2006-06-25 22:50:52.000000000 +0200 -+++ src/leoGlobals.py 2006-06-25 23:03:23.000000000 +0200 -@@ -118,20 +118,9 @@ - - encoding = g.startupEncoding() - -- try: -- theDir = sys.leo_config_directory -- except AttributeError: -- theDir = g.os_path_join(g.app.loadDir,"..","config") -- -- if theDir: -- theDir = g.os_path_abspath(theDir) -- -- if ( -- not theDir or -- not g.os_path_exists(theDir,encoding) or -- not g.os_path_isdir(theDir,encoding) -- ): -- theDir = None -+ theDir = os.path.expanduser("~/.leo") -+ if not os.path.exists(theDir): -+ os.mkdir(theDir) - - return theDir - #@nonl |