From 4fe31ec47957cbe9bbdfe949604d18889979b7ad Mon Sep 17 00:00:00 2001 From: John Shanahan Date: Thu, 5 Sep 2013 22:50:55 -0400 Subject: [PATCH] Added 'import argparse' to 'cheat' --- cheat | 1 + setup.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cheat b/cheat index a8d3af7..8d27c2d 100755 --- a/cheat +++ b/cheat @@ -19,6 +19,7 @@ cheat.py -- Quick, abridged man pages with examples (main routines) import os import sys +import argparse import subprocess DEFAULT_CHEAT_DIR = os.environ.get('DEFAULT_CHEAT_DIR') or \ diff --git a/setup.py b/setup.py index 38cf968..c115c4c 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,7 @@ from distutils.core import setup import os -setup( - name='cheat', +setup(name='cheat', version='1.0', summary='Create and view interactive cheatsheets on the command-line', homepage='',