remove unused assets.py

This commit is contained in:
Mark Burnett 2017-06-19 14:35:30 -05:00
parent 9b165b6c70
commit 0ac46b6310
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
from promenade import logging
import os
import subprocess
__all__ = ['rsync']
LOG = logging.getLogger(__name__)
def rsync(*, src, dest):
LOG.info('Syncing assets from "%s" to "%s".', src, dest)
subprocess.run(['/usr/bin/rsync', '-r', os.path.join(src, ''), dest], check=True)