Skip to content

Commit c682c5b

Browse files
committed
If folder name is given as command-line argument, try to use it as DF folder
1 parent a5ea8fd commit c682c5b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

core/df.py

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ def find_df_folder():
2828
find_df_folders()
2929
if len(lnp.folders) == 1:
3030
set_df_folder(lnp.folders[0])
31+
if len(sys.argv) > 1 and sys.argv[1] in lnp.folders:
32+
set_df_folder(sys.argv[1])
3133

3234
def set_df_folder(path):
3335
"""

0 commit comments

Comments
 (0)