Commit graph

75 commits

Author SHA1 Message Date
Labrys of Knossos
9d9abffdb6 Refactor nzbToMediaDB -> main_db 2018-12-19 17:20:54 -05:00
Labrys of Knossos
41fa636fc2 PEP8 Argument should be lowercase 2018-12-16 23:33:31 -05:00
Labrys of Knossos
d8cbf422dd PEP8 Function name should be lowercase 2018-12-16 21:59:24 -05:00
Labrys of Knossos
97e1ed71b3 PEP8 Variable in function should be lowercase 2018-12-16 21:59:24 -05:00
Labrys of Knossos
f5f6562fe9 Fix strings for Python 3
`basestring` not available in Python 3
`unicode` not available in Python 3
`str` expected instead of `bytes`
2018-12-15 22:04:26 -05:00
Labrys of Knossos
05c3de0f36 Merge branch 'nightly' into fix/unvendor 2018-12-15 16:19:55 -05:00
Labrys of Knossos
5bc789bca3 Optimize imports 2018-12-15 15:01:06 -05:00
Labrys of Knossos
a2ce48c52e Final fix for pywin32 2018-12-15 14:52:02 -05:00
Labrys of Knossos
0a37651ae1 Fix pywin32 imports 2018-12-15 14:27:17 -05:00
Labrys of Knossos
345ff1de93 Fix pywin32 imports 2018-12-15 14:17:10 -05:00
Labrys of Knossos
9fb4cc1986 Fix utorrent client import 2018-12-15 13:43:33 -05:00
Labrys of Knossos
22cbec26e0 Fix linktastic import 2018-12-15 13:23:07 -05:00
Labrys of Knossos
3ed574a49f Move vendored packages in core to libs
Remove `core` references from vendored packages in `core` and optimize imports
2018-12-15 03:13:00 -05:00
clinton-hall
326479ed1b fix qbittorrent to delete permanently. Fixes #1386 2018-10-15 21:29:20 +13:00
clinton-hall
e5066cba0d improve logging for imdb id lookup. #1341 2018-08-30 20:42:20 +12:00
clinton-hall
4fa0dc4572 fix tuple index error preventing qbittorrent login. Fixes #1300 2018-01-23 06:59:45 +13:00
clinton-hall
d67ed51104 fix hash lookup in qbittorrent. Fixes #1300 2018-01-22 23:07:48 +13:00
clinton-hall
12a7e3c5ce add qbittorrent client. Fixes #1300 2018-01-22 08:41:44 +13:00
clinton-hall
e34ba9af89 add qBittorrent parsing. Fixes #1300 2018-01-21 22:37:10 +13:00
hjbotha
bb6eff806e improve user script media extension handling 2017-12-05 14:51:57 +00:00
Clinton Hall
9bd61af1bf
Merge pull request #1314 from bradmann/dev
Increase shutil copy buffer length to improve network performance
2017-12-02 07:23:57 +13:00
Brad Mann
f35efe725f Increase shutil copy buffer length from 4KB to 512KB to improve network transfer performance. 2017-11-13 19:05:51 -05:00
clinton-hall
8b6a885e87 change subtitle logging level. Fixes #1296 2017-09-12 21:59:50 +09:30
clinton-hall
0d6ea131a7 fix text for keep_archive. Fixes #1290 2017-08-27 21:20:59 +09:30
clinton-hall
2779cb6961 already extracted archive not skipped. Fixes #1279 2017-07-20 23:32:31 +09:30
Clinton Hall
f467213284 Merge branch 'nightly' into dev 2017-06-13 22:36:42 +09:30
gunmantheh
39c5cbe1a1 Don't call omdbapi without api key 2017-05-30 22:04:32 +02:00
gunmantheh
3766fa3b84 Added omdbapikey functionality 2017-05-30 21:50:57 +02:00
clinton-hall
6dc289909d allow long paths in Cleandir. Fixes #1189 2017-02-14 20:32:49 +10:30
clinton-hall
a7fcb7be9e convert all listdir functions to unicode. Fixes #1189 2017-02-10 22:12:51 +10:30
clinton-hall
868c8c36bf add catch for OMDB api errors. Fixes #182, #184, #185 2017-02-06 17:02:14 +10:30
clinton-hall
030b334851 fix typo 2016-10-21 21:25:11 +10:30
clinton-hall
6bfb0f4a53 add more logging to server tests. #1113 2016-10-21 20:56:49 +10:30
clinton-hall
14be873c7c fix another int(Section) error. 2016-09-29 07:02:28 +09:30
clinton-hall
879584c107 allow guessit to work of full file path 2016-09-22 09:28:27 +09:30
clinton-hall
d692acb061 fix guessit call. Fixes #1105 2016-09-22 07:11:58 +09:30
clinton-hall
0625f7f3c0 updated libs to fix guessit and subliminal. Fixes #1080 2016-09-21 13:31:41 +09:30
labrys
2ad9f2e35f Standardize string formatting to use .format instead of concat 2016-06-06 09:08:24 -04:00
Labrys
df8c6bc20f Too broad exceptions.
* Use .get() with default value instead.
2016-06-05 13:35:46 -04:00
Labrys
1cd073cd52 Use format() instead of % for string formatting 2016-06-05 12:54:24 -04:00
Labrys
94e8a45c62 Code cleanup
* Streamline variable assignment
* Replace assignment with augmented assignment
* Remove unused variables and redundant parentheses
2016-06-05 12:54:23 -04:00
Labrys
47c585d81c Rewrite dictionary creation as a dictionary literal 2016-06-05 12:54:22 -04:00
Labrys
eb1ee8b5f5 Set expected, but passing list 2016-06-05 12:54:05 -04:00
Labrys
22daf02167 Python 3: Raise with no arguments can only be used in an except block 2016-06-05 12:54:05 -04:00
Labrys
76a00b2493 Convert to new-style class by inheriting from object 2016-06-05 12:54:04 -04:00
Labrys
ec71e7806d Python 3: Convert except ExceptClass, Target: to except ExceptClass as Target: 2016-06-05 12:54:02 -04:00
Labrys
ec2fc8d538 Use six.text_type
* Standarizes unicode function between Python 2 and Python 3
2016-06-05 12:15:05 -04:00
Labrys
d4e5809a29 Use print_function to standardize printing between Python 2 and Python 3 2016-06-05 12:09:39 -04:00
Labrys
1fd904eb5b PEP8: Tests for membership should use in/not in
* .has_key() is deprecated, use `in`
2016-06-05 12:00:20 -04:00
Labrys
92ae852513 PEP8: comparison to None, True, or False should use is/is not 2016-06-05 12:00:20 -04:00