remove expanduser

svn: r6218
This commit is contained in:
Don Allingham
2006-03-29 04:11:17 +00:00
parent ae90bbe812
commit dcec2c11c9
6 changed files with 21 additions and 11 deletions

View File

@@ -37,16 +37,17 @@ try:
except:
use_lock = False
import const
#-------------------------------------------------------------------------
#
# Constants
#
#-------------------------------------------------------------------------
GNOME_FILENAME = "~/.recently-used"
GNOME_FILENAME = os.path.join(const.user_home,".recently-used")
MAX_GNOME_ITEMS = 500
GRAMPS_FILENAME = "~/.gramps/recent-files.xml"
GRAMPS_FILENAME = os.path.join(const.home_dir,"recent-files.xml")
MAX_GRAMPS_ITEMS = 10
#-------------------------------------------------------------------------