Revert "Fixes copy path from A to B when path is unspecified"

revert-42-master
Leonardo Merza 4 years ago committed by GitHub
parent 4294b28661
commit f3e859ce5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ import configparser
import sys import sys
import time import time
import re import re
from os.path import dirname from os.path import basename
from config import ( from config import (
instanceA_url, instanceA_key, instanceA_path, instanceA_profile, instanceA_url, instanceA_key, instanceA_path, instanceA_profile,
@ -205,7 +205,7 @@ def sync_servers(instanceA_contents, instanceB_language_id, instanceB_contentIds
for content in instanceA_contents: for content in instanceA_contents:
if content[content_id_key] not in instanceB_contentIds: if content[content_id_key] not in instanceB_contentIds:
title = content.get('title') or content.get('artistName') title = content.get('title') or content.get('artistName')
instance_path = instanceB_path or dirname(content.get('path')) instance_path = instanceB_path or basename(content.get('path'))
# if given this, we want to filter from instance by profile id # if given this, we want to filter from instance by profile id
if instanceA_profile_filter_id: if instanceA_profile_filter_id:

Loading…
Cancel
Save