Skip to content

Commit a1543e0

Browse files
authored
Update pscheck.py
1 parent 3b27ea7 commit a1543e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pscheck.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def ps():
1919
proginfo = string.split(output)
2020

2121
#display results
22-
print ("\n\)
22+
print "\n\
2323
Full path:\t\t", proginfo[5], "\n\
2424
Owner:\t\t\t", proginfo[0], "\n\
2525
Process ID:\t\t", proginfo[1], "\n\
@@ -32,7 +32,7 @@ def main():
3232
if os.name == "posix": # Unix/Linux/MacOS/BSD/etc
3333
ps() # Call the function
3434
elif os.name in ("nt", "dos", "ce"): # if the OS is windows
35-
print ("You need to be on Linux or Unix to run this")
35+
print "You need to be on Linux or Unix to run this"
3636

3737

3838
if __name__ == '__main__':

0 commit comments

Comments
 (0)