summaryrefslogtreecommitdiff
path: root/distutils2/fancy_getopt.py
diff options
context:
space:
mode:
Diffstat (limited to 'distutils2/fancy_getopt.py')
-rw-r--r--distutils2/fancy_getopt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/distutils2/fancy_getopt.py b/distutils2/fancy_getopt.py
index 1ff235a..966f843 100644
--- a/distutils2/fancy_getopt.py
+++ b/distutils2/fancy_getopt.py
@@ -237,8 +237,8 @@ class FancyGetopt(object):
try:
opts, args = getopt.getopt(args, short_opts, self.long_opts)
- except getopt.error:
- raise PackagingArgError(sys.exc_info()[1])
+ except getopt.error, msg:
+ raise PackagingArgError(msg)
for opt, val in opts:
if len(opt) == 2 and opt[0] == '-': # it's a short option
@@ -368,7 +368,7 @@ class FancyGetopt(object):
if file is None:
file = sys.stdout
for line in self.generate_help(header):
- file.write(line + u"\n")
+ file.write(line + "\n")
def fancy_getopt(options, negative_opt, object, args):