4225671177f9f65e873ddbab373e5968c2afa8fc,debug_toolbar/panels/staticfiles.py,StaticFilesPanel,get_staticfiles_dirs,#StaticFilesPanel#,162

Before Change


        
        Returns a list of paths to inspect for additional static files
        
        dirs = getattr(settings, "STATICFILES_DIRS", ())
        return [normpath(d) for d in dirs]

    def get_staticfiles_apps(self):
        

After Change


        
        Returns a list of paths to inspect for additional static files
        
        dirs = []
        for finder in finders.get_finders():
            if isinstance(finder, finders.FileSystemFinder):
                dirs.extend(finder.locations)
        return [(prefix, normpath(dir)) for prefix, dir in dirs]

    def get_staticfiles_apps(self):
        
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: jazzband/django-debug-toolbar
Commit Name: 4225671177f9f65e873ddbab373e5968c2afa8fc
Time: 2013-12-23
Author: jannis@leidel.info
File Name: debug_toolbar/panels/staticfiles.py
Class Name: StaticFilesPanel
Method Name: get_staticfiles_dirs


Project Name: reinforceio/tensorforce
Commit Name: 03971d5646518f98802cbdde85dc88e16da657a5
Time: 2018-02-18
Author: svenmika1977@gmail.com
File Name: tensorforce/models/model.py
Class Name: Model
Method Name: reset


Project Name: theislab/scanpy
Commit Name: 4b1f799c8403626ff56c7bf23fb1fbdb79dcb015
Time: 2019-01-14
Author: fidel.ramirez@gmail.com
File Name: scanpy/plotting/_tools/__init__.py
Class Name:
Method Name: _rank_genes_groups_plot