Skip to content

Commit fedd2a2

Browse files
committed
PEP8 formation
1 parent f507963 commit fedd2a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

logs.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Script Name : logs.py
22
# Author : Craig Richards
33
# Created : 13th October 2011
4-
# Last Modified : 14 February 2016
4+
# Last Modified : 14 February 2016
55
# Version : 1.2
66
#
77
# Modifications : 1.1 - Added the variable zip_program so you can set it for the zip program on whichever OS, so to run on a different OS just change the locations of these two variables.
@@ -12,8 +12,8 @@
1212
import os # Load the Library Module
1313
from time import strftime # Load just the strftime Module from Time
1414

15-
logsdir="c:\puttylogs" # Set the Variable logsdir
16-
zip_program="zip.exe" # Set the Variable zip_program - 1.1
15+
logsdir = "c:\puttylogs" # Set the Variable logsdir
16+
zip_program = "zip.exe" # Set the Variable zip_program - 1.1
1717

1818
for files in os.listdir(logsdir): # Find all the files in the directory
1919
if files.endswith(".log"): # Check to ensure the files in the directory end in .log

0 commit comments

Comments
 (0)