diff options
Diffstat (limited to 'core/views/survex.py')
-rw-r--r-- | core/views/survex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/survex.py b/core/views/survex.py index 07eab38..c909a40 100644 --- a/core/views/survex.py +++ b/core/views/survex.py @@ -19,7 +19,7 @@ from troggle.core.models.caves import Cave, GetCaveLookup from troggle.core.models.logbooks import LogbookEntry from troggle.core.models.survex import SurvexBlock, SurvexFile #, SurvexDirectory from troggle.core.models.wallets import Wallet -from troggle.core.utils import COOKIE_MAX_AGE, current_expo, git_string, only_commit +from troggle.core.utils import COOKIE_MAX_AGE, current_expo, git_string, add_commit from troggle.parsers.survex import parse_one_file """Everything that views survexfiles @@ -234,7 +234,7 @@ class SvxForm(forms.Form): else: comment = f"Online survex edit: {self.data['filename']}.svx on dev machine '{socket.gethostname()}' " print(f"Committing file which has been saved {editor=}") - only_commit(fname, comment, editor) + add_commit(fname, comment, editor) msg = f"SAVED and committed to git (if there were differences)\nEdited by:{editor}" # should only call this is something changed |