Merge branch 'advanced_persistence' of code.communitydata.cc:/mediawiki_dump_tools into advanced_persistence

This commit is contained in:
Nate E TeBlunthuis 2018-08-23 18:23:36 -07:00 committed by groceryheist
commit afd40c1a45

6
wikiq
View File

@ -373,11 +373,12 @@ parser.add_argument('-p', '--persistence', dest="persist", default=None, const='
parser.add_argument('-u', '--url-encode', dest="urlencode", action="store_true",
help="Output url encoded text strings. This works around some data issues like newlines in editor names. In the future it may be used to output other text data.")
parser.add_argument('-ns', '--namespace-filter', dest="namespace_filter", type=str, help="Comma-seperate list of namespaces numbers to include")
parser.add_argument('-n', '--namespace-include', dest="namespace_filter", type=int, action='append',
help="Id number of namspace to include.")
args = parser.parse_args()
print(args)
# set persistence method
if args.persist is None:
@ -412,7 +413,6 @@ if len(args.dumpfiles) > 0:
persist=persist,
urlencode=args.urlencode)
wikiq.process()
# close things