Private GIT

Skip to content
Snippets Groups Projects
Commit 80dbc3d4 authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

Merge pull request #1736 from SiCKRAGETV/revert-1612-pp_action_win

Revert "Remove hardlink and symlink from actions if Win32"
parents d8e314d5 da0cea04
No related branches found
No related tags found
No related merge requests found
#import os.path
#import sickbeard
#import sys
#from sickbeard.common import *
#from sickbeard import config
#from sickbeard import metadata
......@@ -72,12 +71,7 @@
<span class="component-desc">
<select name="process_method" id="process_method" class="form-control input-sm">
#set $process_method_text = {'copy': "Copy", 'move': "Move", 'hardlink': "Hard Link", 'symlink' : "Symbolic Link"}
#if sys.platform == 'win32'
#set $process_action = ('copy', 'move')
#else
#set $process_action = ('copy', 'move', 'hardlink', 'symlink')
#end if
#for $curAction in $process_action:
#for $curAction in ('copy', 'move', 'hardlink', 'symlink'):
#if $sickbeard.PROCESS_METHOD == $curAction:
#set $process_method = "selected=\"selected\""
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment