mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Correcting typo in dupe feed resolution.
This commit is contained in:
parent
1c4a5c975e
commit
9236ecc6f6
2 changed files with 1 additions and 2 deletions
|
@ -145,7 +145,7 @@ class Feed(models.Model):
|
|||
duplicate_feed = Feed.objects.filter(feed_address=self.feed_address, feed_link=self.feed_link)
|
||||
logging.debug("%s: %s" % (self.feed_address, duplicate_feed))
|
||||
logging.debug(' ***> [%-30s] Feed deleted. Could not save: %s' % (unicode(self)[:30], e))
|
||||
if duplicate_feeds:
|
||||
if duplicate_feed:
|
||||
merge_feeds(self.pk, duplicate_feed[0].pk)
|
||||
return duplicate_feed[0]
|
||||
# Feed has been deleted. Just ignore it.
|
||||
|
|
1
fabfile.py
vendored
1
fabfile.py
vendored
|
@ -81,7 +81,6 @@ def deploy():
|
|||
post_deploy()
|
||||
|
||||
def deploy_full():
|
||||
pre_deploy()
|
||||
deploy_code(full=True)
|
||||
post_deploy()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue