diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-17 05:34:06 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-12-17 05:34:06 +0000 |
commit | f635897e0c472430a10a225eb941d4e232aa14d9 (patch) | |
tree | 3fc174e0b83709151ed599d88b0c482ddd2f940f | |
parent | 2cadff48652c896cf49df4a2ac2079c188e3996d (diff) | |
download | portage-f635897e0c472430a10a225eb941d4e232aa14d9.tar.gz portage-f635897e0c472430a10a225eb941d4e232aa14d9.tar.bz2 portage-f635897e0c472430a10a225eb941d4e232aa14d9.zip |
Fix missing ":" on except line.
svn path=/main/trunk/; revision=2387
-rwxr-xr-x | bin/ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild b/bin/ebuild index 0225374e4..603212e25 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -74,7 +74,7 @@ for arg in pargs: except KeyboardInterrupt: print "Interrupted." a = 1 - except KeyError + except KeyError: # aux_get error a = 1 if a == None: |