]> git.phdru.name Git - dotfiles.git/blobdiff - bin/PS
Feat(bin): Port scripts to Python 3
[dotfiles.git] / bin / PS
diff --git a/bin/PS b/bin/PS
index 67574b554436acdc20ac245993d489be5183fd0c..7fbd8b1cfb3b2b75c1303a2ad543af0f66f56f66 100755 (executable)
--- a/bin/PS
+++ b/bin/PS
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python3
 
 import sys, os
 
@@ -13,5 +13,5 @@ if pager == 'less':
     opt = 'S'
     if opt not in less:
         less = opt + less
-    os.environ["LESS"] = less
+        os.environ["LESS"] = less
 os.system("ps %s | %s" % (args, pager))