mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-07 18:40:02 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
13 lines
367 B
Python
13 lines
367 B
Python
'''tzinfo timezone information for GMT_minus_0.'''
|
|
from pytz.tzinfo import StaticTzInfo
|
|
from pytz.tzinfo import memorized_timedelta as timedelta
|
|
|
|
class GMT_minus_0(StaticTzInfo):
|
|
'''GMT_minus_0 timezone definition. See datetime.tzinfo for details'''
|
|
zone = 'GMT_minus_0'
|
|
_utcoffset = timedelta(seconds=0)
|
|
_tzname = 'GMT'
|
|
|
|
GMT_minus_0 = GMT_minus_0()
|
|
|