Przeglądaj źródła

Hotfix for indentation error

Cammy 7 lat temu
rodzic
commit
e342f8c36e
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      pyinstalive/pyinstalive.py

+ 4 - 4
pyinstalive/pyinstalive.py

@@ -31,10 +31,10 @@ def run():
 		api = auth.login(args.username, args.password)
 	else:
 		api = auth.login(config['pyinstalive']['username'], config['pyinstalive']['password'])
-    
-    savePath = config['pyinstalive']['save_path']
-    if not savePath.endswith('/'):
-    	savePath = savePath + '/'
+	
+	savePath = config['pyinstalive']['save_path']
+	if not savePath.endswith('/'):
+		savePath = savePath + '/'
 
 	if (os.path.exists(savePath)):
 		downloader.main(api, args.record, savePath)