summaryrefslogtreecommitdiff
path: root/subsync.py
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2024-01-28 22:13:38 -0500
committerDavid Gay <eapoems@riseup.net>2024-01-28 22:13:38 -0500
commit112cca4edfd92bf5dd547f3ee6bd272b5a0e5af5 (patch)
tree2873ae885af2792599f2710b834f84d5e9222fd0 /subsync.py
parentd81b593a114920eb69229ded9ecc55e94f906361 (diff)
Get files in current directory instead of parent directory
Diffstat (limited to 'subsync.py')
-rw-r--r--subsync.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/subsync.py b/subsync.py
index 60041e1..dc11c1c 100644
--- a/subsync.py
+++ b/subsync.py
@@ -12,7 +12,9 @@ from multiprocessing import Pool
import chardet
os.chdir(os.path.dirname(os.path.realpath(__file__)))
-os.chdir('..')
+
+# Enable this to get files in the parent directory instead of the current directory.
+# os.chdir('..')
class mopen: