~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/__init__.py

  • Committer: Robert Collins
  • Date: 2012-09-25 08:26:01 UTC
  • mto: This revision was merged to the branch mainline in revision 6566.
  • Revision ID: robertc@robertcollins.net-20120925082601-sykhddmq2sxdt6oq
* ``bzr help env-variables`` now points users at ``bzr help configuration``
  which has much more detailed information on the same stuff.

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")