pookz@stme commited on
Commit Β·
eb6573b
1
Parent(s): 7f23d5b
fix tencent video schedule select
Browse files- tencent_uploader/main.py +2 -1
tencent_uploader/main.py
CHANGED
|
@@ -93,7 +93,8 @@ class TencentVideo(object):
|
|
| 93 |
|
| 94 |
await page.click('input[placeholder="θ―·ιζ©ε葨ζΆι΄"]')
|
| 95 |
|
| 96 |
-
|
|
|
|
| 97 |
# θ·εε½εηζδ»½
|
| 98 |
page_month = await page.inner_text('span.weui-desktop-picker__panel__label:has-text("ζ")')
|
| 99 |
|
|
|
|
| 93 |
|
| 94 |
await page.click('input[placeholder="θ―·ιζ©ε葨ζΆι΄"]')
|
| 95 |
|
| 96 |
+
str_month = str(publish_date.month) if publish_date.month > 9 else "0" + str(publish_date.month)
|
| 97 |
+
current_month = str_month + "ζ"
|
| 98 |
# θ·εε½εηζδ»½
|
| 99 |
page_month = await page.inner_text('span.weui-desktop-picker__panel__label:has-text("ζ")')
|
| 100 |
|