Added 'import argparse' to 'cheat'

This commit is contained in:
John Shanahan 2013-09-05 22:50:55 -04:00
parent 139ff6c32e
commit 4fe31ec479
2 changed files with 2 additions and 2 deletions

1
cheat
View File

@ -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 \

View File

@ -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='',