Skip to content

Commit

Permalink
add rememberdialog.py to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
quintijn committed Aug 25, 2024
1 parent 58f7edd commit d1cbfb0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ README.html
/src/unimacro/UnimacroGrammars/rememberdialog.py
/tests/rememberdialog.py
/src/unimacro/UnimacroGrammars/rememberdialog.py
/src/unimacro/UnimacroGrammars/rememberdialog.py
12 changes: 5 additions & 7 deletions src/unimacro/UnimacroGrammars/rememberdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@
from dtactions.unimacro import inivars

prompt = """Remember in Unimacro _folders grammar""" # readable text
text = """Remember website for future calling?
text = """Remember folder "C:/DT/NatlinkcoreDoug/src/natlinkcore/SampleMacros" for future calling?
- https://pypi.org -
Please give a spoken form for this website and choose OK; or Cancel...""" # input text, the key of the
Please give a spoken form for this folder and choose OK; or Cancel...""" # input text, the key of the
inifile = "C:/Users/Gebruiker/Documents/unimacro_qh/enx_inifiles/_folders.ini"
section = "websites"
value = "https://pypi.org"
section = "folders"
value = "C:/DT/NatlinkcoreDoug/src/natlinkcore/SampleMacros"
title = "test"
default = "pypi"
default = "SampleMacros"
pausetime = 3 # should be replaced by 0 or a positive int value


Expand Down

0 comments on commit d1cbfb0

Please sign in to comment.