~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup/configure.py

configure.py: Fixed missing reference to conf_options in error case.
    (Would have crashed on error with db_port or usrmgt_port).

Show diffs side-by-side

added added

removed removed

Lines of Context:
338
338
    except ValueError:
339
339
        print >>sys.stderr, (
340
340
        "Invalid DB port (%s).\n"
341
 
        "Must be an integer between 0 and 65535." % repr(db_port))
 
341
        "Must be an integer between 0 and 65535." %
 
342
            repr(conf_options['db_port']))
342
343
        return 1
343
344
    try:
344
345
        conf_options['usrmgt_port'] = int(conf_options['usrmgt_port'])
348
349
    except ValueError:
349
350
        print >>sys.stderr, (
350
351
        "Invalid user management port (%s).\n"
351
 
        "Must be an integer between 0 and 65535." % repr(usrmgt_port))
 
352
        "Must be an integer between 0 and 65535." %
 
353
            repr(conf_options['usrmgt_port']))
352
354
        return 1
353
355
 
354
356
    # By default we generate the magic randomly.