Coder Social home page Coder Social logo

Error: No asset bundles were found. If you are defining assets directly within your templates, you want to use the --parse-templates option. about webassets HOT 5 CLOSED

miracle2k avatar miracle2k commented on August 19, 2024
Error: No asset bundles were found. If you are defining assets directly within your templates, you want to use the --parse-templates option.

from webassets.

Comments (5)

sidmitra avatar sidmitra commented on August 19, 2024

by REGISTRY i meant the underscore_REGISTRY var. The markdown ate it up.

from webassets.

miracle2k avatar miracle2k commented on August 19, 2024

Hm, that is strange. It kind of sounds like django_assets is loaded twice.

Traditinally, a problem Django has is that it makes modules importable both by app name and by project name. So, you could import for example your models file both as "import project.app.models" and "import app.models".

Python will consider those two different module instances, with different globals etc. As a result, it would be possible for you to have your assets.py file loaded twice, and your assets register calls ran a second time (which would through an error).

Except in this case, it would be not your own project modules, but the django-assets.registry namespace that is affected, for some reason. Do you have the django-assets source code copied into your project tree, possibly?

Try to put print statements into the django_assets/registry.py file along the lines of:

import sys, traceback
print "Importing %s, %s" % (__name__, sys.modules[__name__])
print id(sys.modules[__name__])
traceback.print_stack()

And see if that gets executed multiple times.

from webassets.

sidmitra avatar sidmitra commented on August 19, 2024

Thanks, i'll look into it. Then is there a way to make variables cross module global. I searched and found some people using builtins, but not sure that's a clean solution.

from webassets.

miracle2k avatar miracle2k commented on August 19, 2024

builtins would work, but it is definitely not an acceptable workaround IMO.

The problem shouldn't appear in the first place.

from webassets.

miracle2k avatar miracle2k commented on August 19, 2024

I'll presume the problem hasn't reappeared. If so, feel free to reopen the ticket.

from webassets.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.