From 992f7ce0f205bf88df8c8e432d19c42d896409df Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Sat, 16 Feb 2013 18:01:21 -0800 Subject: [PATCH] fixed indent error --- linktastic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linktastic.py b/linktastic.py index 2cb4a79a..21b12374 100644 --- a/linktastic.py +++ b/linktastic.py @@ -28,7 +28,7 @@ import os # Private function to create link on nt-based systems def _link_windows(src, dest): - try: + try: subprocess.check_output( ['cmd', '/C', 'mklink', '/H', dest, src], stderr=subprocess.STDOUT)