Przeglądaj źródła

change true True

master
Andreas Demmelbauer 3 lat temu
rodzic
commit
01fb9a2577
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      demotape.py

+ 2
- 2
demotape.py Wyświetl plik

@@ -160,7 +160,7 @@ def upload_video(videofile_path):
result = os.system('curl -L -u %s -T "%s" "%s"' % (credentials, videofile_path, webdav_url))
if result == 0: # exit code
delete_video(videofile_path)
return true
return True
except:
logging.info('Error while uploading %s to %s' % (file, webdav_url))
@@ -168,7 +168,7 @@ def upload_video(videofile_path):
def delete_video(file):
try:
os.system('rm -rf "%s"' % (file))
return true
return True
except:
logging.info('Error while deleting %s' % (file))



Ładowanie…
Anuluj
Zapisz