~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-07 20:29:48 UTC
  • mto: This revision was merged to the branch mainline in revision 1871.
  • Revision ID: john@arbash-meinel.com-20060707202948-835b9b7031034d04
Creating a helper function for getting the user ignore filename

Show diffs side-by-side

added added

removed removed

Lines of Context:
604
604
    return pathjoin(config_dir(), 'locations.conf')
605
605
 
606
606
 
 
607
def user_ignore_config_filename():
 
608
    """Return the user default ignore filename"""
 
609
    return pathjoin(config_dir(), 'ignore')
 
610
 
 
611
 
607
612
def _auto_user_id():
608
613
    """Calculate automatic user identification.
609
614