From a8d47f2c309c2fe97a162234a371308e332a2c92 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 25 Feb 2017 13:39:14 -0500 Subject: [PATCH] Simpler __main__ docstring (#2453) --- beets/__main__.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/beets/__main__.py b/beets/__main__.py index 608cc0bd0..8010ca0dd 100644 --- a/beets/__main__.py +++ b/beets/__main__.py @@ -13,16 +13,8 @@ # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. -"""main module. - -This module will be executed when beets module is run with `-m`. - -Example : `python -m beets` - -Related links about __main__.py: - -* python3 docs entry: https://docs.python.org/3/library/__main__.html -* related SO: http://stackoverflow.com/q/4042905 +"""The __main__ module lets you run the beets CLI interface by typing +`python -m beets`. """ from __future__ import division, absolute_import, print_function