We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e41ce5 commit 884f27bCopy full SHA for 884f27b
plugins/TPDBMarkers/TPDBMarkers.yml
@@ -1,6 +1,6 @@
1
name: The Porn DB Markers
2
description: Sync Markers from The Porn DB aka theporndb.net
3
-version: 0.4.3
+version: 0.4.4
4
url: https://discourse.stashapp.cc/t/the-porn-db-markers/1335
5
exec:
6
- python
plugins/TPDBMarkers/tpdbMarkers.py
@@ -5,6 +5,7 @@
import requests
import json
7
import time
8
+import math
9
10
11
per_page = 100
@@ -99,7 +100,7 @@ def processAll():
99
100
)[0]
101
log.info(str(count) + " scenes to submit.")
102
i = 0
- for r in range(1, int(count / per_page) + 1):
103
+ for r in range(1, math.ceil(count / per_page) + 1):
104
log.info(
105
"fetching data: %s - %s %0.1f%%"
106
% (
0 commit comments