diff options
| author | glatzor@ubuntu.com <> | 2006-09-02 13:34:15 +0200 |
|---|---|---|
| committer | glatzor@ubuntu.com <> | 2006-09-02 13:34:15 +0200 |
| commit | dd6de6768890b0aaf21ceac12f835f9157e438a9 (patch) | |
| tree | c9ace820f9accfc74bb2c3b9accf85b1f881b052 /software-properties | |
| parent | b139b31fd1adc363d59338b45b7c82dcec51d44b (diff) | |
| download | python-apt-dd6de6768890b0aaf21ceac12f835f9157e438a9.tar.gz | |
* Fix #58453: handle disabled child sources correctly
Diffstat (limited to 'software-properties')
| -rw-r--r-- | software-properties | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/software-properties b/software-properties index 129c3085..af1f80ff 100644 --- a/software-properties +++ b/software-properties @@ -45,6 +45,13 @@ if __name__ == "__main__": # Begin parsing of options parser = OptionParser() + parser.add_option ("-d", "--debug", action="store_true", + dest="debug", default=False, + help="Print some debug information to the command line") + parser.add_option ("-m", "--massive-debug", action="store_true", + dest="massive_debug", default=False, + help="Print a lot of debug information to the " + "command line") parser.add_option ("-n", "--no-update", action="store_true", dest="no_update", default=False, help="No update on repository change (usefull if called "\ |
