Merge branch 'release/10.0.64'
... | ... | @@ -76,6 +76,7 @@ python-twitter==3.5 |
pytz==2020.1 | ||
pyxdg==0.26 | ||
PyYAML==5.4.1 | ||
pywin32==304; sys_platform == 'win32' | ||
rarfile==3.1 | ||
rebulk==2.0.1 | ||
requests==2.24.0 | ||
... | ... | @@ -93,6 +94,7 @@ SQLAlchemy==1.4.32 |
SQLAlchemy-Utils==0.38.2 | ||
stevedore==3.2.0 | ||
subliminal==2.1.0 | ||
telnetlib3==1.0.4 | ||
tornado==6.1 | ||
twilio==6.44.2 | ||
typing-extensions==4.1.1 | ||
... | ... |
sickrage.ico
0 → 100644
4.19 KB
# ############################################################################## | ||
# Author: echel0n <[email protected]> | ||
# URL: https://sickrage.ca/ | ||
# Git: https://git.sickrage.ca/SiCKRAGE/sickrage.git | ||
# - | ||
# This file is part of SiCKRAGE. | ||
# - | ||
# SiCKRAGE is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# - | ||
# SiCKRAGE is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# - | ||
# You should have received a copy of the GNU General Public License | ||
# along with SiCKRAGE. If not, see <http://www.gnu.org/licenses/>. | ||
# ############################################################################## | ||
def cmp(a, b): | ||
return (a > b) - (a < b) |