Fixed publish date when there is only the year
This commit is contained in:
parent
92dc21f014
commit
343ab02874
|
@ -72,9 +72,12 @@ class MediaAdminForm(ModelForm):
|
|||
"June", "July", "August", "September",
|
||||
"October", "November", "December"]
|
||||
split = data['publish_date'].replace(',', '').split(' ')
|
||||
self.cleaned_data['publish_date'] = "{}-{:02d}-{:02d}" \
|
||||
.format(split[2], months.index(split[0]) + 1,
|
||||
int(split[1]), )
|
||||
if len(split) == 1:
|
||||
self.cleaned_data['publish_date'] = split[0] + "-01-01"
|
||||
else:
|
||||
self.cleaned_data['publish_date'] = "{}-{:02d}-{:02d}" \
|
||||
.format(split[2], months.index(split[0]) + 1,
|
||||
int(split[1]), )
|
||||
|
||||
if 'authors' in data:
|
||||
if 'author' not in self.cleaned_data:
|
||||
|
|
|
@ -2,6 +2,7 @@ from http.server import BaseHTTPRequestHandler, HTTPServer
|
|||
|
||||
import os
|
||||
import socket
|
||||
from time import sleep
|
||||
|
||||
"""
|
||||
GetBlue Android parameters
|
||||
|
@ -24,6 +25,8 @@ class Server(BaseHTTPRequestHandler):
|
|||
print("Hey j'ai un ISBN :", isbn)
|
||||
os.system("xdotool type " + isbn)
|
||||
os.system("xdotool key KP_Enter")
|
||||
sleep(1)
|
||||
os.system("xdotool click 1")
|
||||
|
||||
def do_HEAD(self):
|
||||
self._set_headers()
|
||||
|
|
Loading…
Reference in New Issue