~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Patch Queue Manager
  • Date: 2012-09-27 06:44:23 UTC
  • mfrom: (6565.1.1 plugins-at-docs)
  • Revision ID: pqm@pqm.ubuntu.com-20120927064423-uu4honp6xds8afgg
(vila) Add reference to configuration in 'bzr help env-variables' (Robert
 Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
620
620
 
621
621
def _env_variables(topic):
622
622
    import textwrap
623
 
    ret = ["Environment Variables\n\n"]
 
623
    ret = ["Environment Variables\n\n"
 
624
        "See bzr help configuration for more details.\n\n"]
624
625
    max_key_len = max([len(k[0]) for k in known_env_variables])
625
626
    desc_len = (80 - max_key_len - 2)
626
627
    ret.append("=" * max_key_len + " " + "=" * desc_len + "\n")