Skip to content

Commit

Permalink
active copy full path
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAcord committed Mar 18, 2022
1 parent ab61ce4 commit 6d8ad64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autorpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import openpyxl
import pandas as pd
from pathlib import Path
import pyperclip as pc
import random
import re
import shutil
Expand Down Expand Up @@ -1482,7 +1483,9 @@ def params(argv):
colorNotice(f"No engagements. Run 'autorpt.py startup' to create an engagement.")
else:
colorNotice(f"The active engagement is: {session['Current']['active']}")
colorNotice(session[session['Current']['active']]['path'])
colorNotice(f"Path: {session[session['Current']['active']]['path']}")
colorNotice(f"Path is in your clipboard.")
pc.copy(session[session['Current']['active']]['path'])
else:
mainMenu()

Expand Down

0 comments on commit 6d8ad64

Please sign in to comment.