Skip to content

Commit

Permalink
Merge pull request #9285 from pymedusa/release/release-0.5.10
Browse files Browse the repository at this point in the history
Release/release 0.5.10
  • Loading branch information
medariox authored Mar 1, 2021
2 parents e653cc7 + 5e79843 commit c302d8a
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 138 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.5.10 (01-03-2021)

#### Fixes
- Don't save removed episode location as dot ([9284](https://github.com/pymedusa/Medusa/pull/9284))

-----

## 0.5.9 (28-02-2021)

#### New Features
Expand Down
2 changes: 1 addition & 1 deletion medusa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
log.logger.addHandler(logging.NullHandler())

INSTANCE_ID = text_type(uuid.uuid1())
VERSION = '0.5.9'
VERSION = '0.5.10'
USER_AGENT = 'Medusa/{version} ({system}; {release}; {instance})'.format(
version=VERSION, system=platform.system(), release=platform.release(),
instance=INSTANCE_ID)
Expand Down
2 changes: 2 additions & 0 deletions medusa/tv/episode.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,9 @@ def location(self, value):
if value and self.is_location_valid(new_location):
self.file_size = os.path.getsize(new_location)
else:
self._location = ''
self.file_size = 0
return

if new_location == old_location:
return
Expand Down
Loading

0 comments on commit c302d8a

Please sign in to comment.