# HG changeset patch # User David Barts # Date 1559346602 25200 # Node ID 8e72dd62cc6a832fae2fdbdc5884d3a98c35e156 # Parent cb5a6e200c95b085c532962ce98a79a3a6641cc2 Add tincan.fsroot and tincan.urlroot to the app config. diff -r cb5a6e200c95 -r 8e72dd62cc6a tincan.py --- a/tincan.py Fri May 31 08:45:39 2019 -0700 +++ b/tincan.py Fri May 31 16:50:02 2019 -0700 @@ -852,6 +852,8 @@ sys.path.insert(1, os.path.abspath(lib)) # Do what we gotta do self.app = TinCan() + self.app.config['tincan.fsroot'] = os.path.abspath(self.fsroot) + self.app.config['tincan.urlroot'] = self.urlroot self._launch([]) return self