From 69de8ecadf6d93bde3818c5973db871baac6ec2e Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 1 Dec 2010 12:08:33 -0800 Subject: Fix up the commit command Looks like argparse doesn't like a % in help. Odd. Also fix a logic error for non-tty usage. --- src/pyfedpkg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pyfedpkg') diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py index 08ae1b9..8f202b8 100644 --- a/src/pyfedpkg/__init__.py +++ b/src/pyfedpkg/__init__.py @@ -487,7 +487,7 @@ def commit(path=None, message=None, file=None, files=[]): # First lets see if we got a message or we're on a real tty: if not sys.stdin.isatty(): - if not message or not file: + if not message and not file: raise FedpkgError('Must have a commit message or be on a real tty.') # construct the git command -- cgit