Skip to content

Commit

Permalink
Fix order of header comment vs. docstring (#2453)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampsyo committed Feb 25, 2017
1 parent 94a897f commit 35e2ecf
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions beets/__main__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
# -*- coding: utf-8 -*-
"""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
"""
# This file is part of beets.
# Copyright 2017, Adrian Sampson.
#
Expand All @@ -24,6 +13,18 @@
# 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
"""

from __future__ import division, absolute_import, print_function

import sys
Expand Down

0 comments on commit 35e2ecf

Please sign in to comment.