diff --git a/mayan/apps/installation/literals.py b/mayan/apps/installation/literals.py index bfff2fd680..49392c0d56 100644 --- a/mayan/apps/installation/literals.py +++ b/mayan/apps/installation/literals.py @@ -7,4 +7,3 @@ FORM_SUBMIT_URL = 'https://docs.google.com/spreadsheet/formResponse' FORM_KEY = 'dGZrYkw3SDl5OENMTG15emp1UFFEUWc6MQ' FORM_RECEIVER_FIELD = 'entry.0.single' TIMEOUT = 5 -FABFILE_MARKER = os.path.join(settings.BASE_DIR, 'fabfile_install') diff --git a/mayan/apps/installation/models.py b/mayan/apps/installation/models.py index b88e1f9b00..c7e4dcd13b 100644 --- a/mayan/apps/installation/models.py +++ b/mayan/apps/installation/models.py @@ -32,8 +32,7 @@ from lock_manager import Lock, LockError from ocr.settings import PDFTOTEXT_PATH, TESSERACT_PATH, UNPAPER_PATH from .classes import PIPNotFound, Property, PropertyNamespace, VirtualEnv -from .literals import (FABFILE_MARKER, FORM_KEY, FORM_RECEIVER_FIELD, - FORM_SUBMIT_URL, TIMEOUT) +from .literals import FORM_KEY, FORM_RECEIVER_FIELD, FORM_SUBMIT_URL, TIMEOUT class Installation(SingletonModel): @@ -106,7 +105,6 @@ class Installation(SingletonModel): namespace.add_property('uuid', _(u'UUID'), self.uuid, report=True) namespace.add_property('mayan_version', _(u'Mayan EDMS version'), mayan_version, report=True) - namespace.add_property('fabfile', _(u'Installed via fabfile'), os.path.exists(FABFILE_MARKER), report=True) def git_properties(self): namespace = PropertyNamespace('git', _(u'Git repository'))