whoops - no-database shouldn't default to true!
authorSeth Vidal <skvidal@fedoraproject.org>
Tue, 1 Jun 2010 19:01:12 +0000 (15:01 -0400)
committerSeth Vidal <skvidal@fedoraproject.org>
Tue, 1 Jun 2010 19:01:12 +0000 (15:01 -0400)
mergerepo.py

index 404debec306acc4ae2748fcf7554a91405426540..05e5f5edb74895a4f57ccfcdbb7045859c46820b 100755 (executable)
@@ -40,7 +40,7 @@ def parse_args(args):
     parser.add_option("-a", "--archlist", default=[], action="append",
                       help="Defaults to all arches - otherwise specify arches")
     parser.add_option("-d", "--database", default=True, action="store_true")
-    parser.add_option( "--no-database", default=True, action="store_true", dest="nodatabase")
+    parser.add_option( "--no-database", default=False, action="store_true", dest="nodatabase")
     parser.add_option("-o", "--outputdir", default=None,
                       help="Location to create the repository")
     parser.add_option("", "--nogroups", default=False, action="store_true",