Skip to content

Commit

Permalink
updated __prog__, __description__
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmdnk committed Nov 17, 2015
1 parent 6b0b57d commit 8bce7ee
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions bin/brew-file
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ https://github.com/rcmdnk/homebrew-file
requirement: Python 2.7 or later
"""
import os
import sys

__prog__ = "brew file"
__prog__ = os.path.basename(__file__)
__description__ = __doc__
__author__ = "rcmdnk"
__copyright__ = "Copyright (c) 2013 rcmdnk"
__credits__ = ["rcmdnk"]
Expand All @@ -19,9 +22,6 @@ __maintainer__ = "rcmdnk"
__email__ = "rcmdnk@gmail.com"
__status__ = "Prototype"

import os
import sys


class Tee:
"""Module to write out in two ways at once."""
Expand Down Expand Up @@ -2324,8 +2324,7 @@ def main():
link_parser, appstore_parser,
dryrun_parser, yn_parser, verbose_parser],
formatter_class=argparse.RawTextHelpFormatter,
description="Brew-file: Manager for packages of Homebrew\n"
"https://github.com/rcmdnk/homebrew-file")
description=__description__)

subparsers = parser.add_subparsers(
title="subcommands", metavar="[command]", help="", dest="command")
Expand Down

0 comments on commit 8bce7ee

Please sign in to comment.