diff options
author | Jochen Topf <jochen@topf.org> | 2013-02-10 10:05:54 +0100 |
---|---|---|
committer | Jochen Topf <jochen@topf.org> | 2013-02-10 10:05:54 +0100 |
commit | c203c08338b3cac5a8c26deb809943dadf08f468 (patch) | |
tree | de2dadeb05fe634b6a4034772d45cf0598d1c3c7 /sources | |
parent | c97ccd990ed416a1437c22653643730008f90136 (diff) | |
download | taginfo-c203c08338b3cac5a8c26deb809943dadf08f468.tar taginfo-c203c08338b3cac5a8c26deb809943dadf08f468.tar.gz |
It seems the mediawiki API has changed and this fixes it
Diffstat (limited to 'sources')
-rwxr-xr-x | sources/wiki/get_page_list.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/wiki/get_page_list.rb b/sources/wiki/get_page_list.rb index 05812c3..8174812 100755 --- a/sources/wiki/get_page_list.rb +++ b/sources/wiki/get_page_list.rb @@ -71,7 +71,7 @@ def get_page_list(api, namespaceid, options) yield v['touched'], v['title'].gsub(/\s/, '_') end if data['query-continue'] - apfrom = data['query-continue']['allpages']['gapfrom'].gsub(/\s/, '_') + apfrom = data['query-continue']['allpages']['gapcontinue'].gsub(/\s/, '_') # puts "apfrom=#{apfrom}" else return |