n Jun 17, 1:53 pm, Ben Davis wrote:
>
>
>
> > Nope, you'll need to set a variable in your view. You can also try creating
> > your own filter such that {% if friend|is_in_group %} would work (it's
> > pretty easy to do, just check out the docs for custom template filters)
&g
I want to return an error that a user was not found. I wanted to add
the error and have it formatted using errorlist as happens with a
required field. So I did the following
lform._errors['username'] = ErrorList("User does not exist or wrong
password")
The result in lform.errors is
ErrorDict:
I have the following code in model manager
class SpotMessageManager(models.Manager):
def for_user(self, user, start = 0, end = None, friends ):
messages = self.filter(user = user).order_by
('date_added').reverse()
...
friends is a list of users, and I want the quer
or another words can I use a Q object in a model manager?
On Aug 23, 12:05 am, CrabbyPete wrote:
> I have the following code in model manager
>
> class SpotMessageManager(models.Manager):
>
> def for_user(self, user, start = 0, end = None, friends ):
> mess
I installed the PIL Imaging library and when I validate my model I get
the error that I need the imaging library. I'm using Python 2.6.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to
I am trying to save a message that has a registered trademark
character in it, like Coke is a registered trademark.
I get a DjangoDecodeError. How do I prevent this from happening?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Go
I keep getting this message when I try to save a record to my database
DjangoDecodeError: 'utf8' codec can't decode byte 0xae in position 268
I have __unicode__ defined in my models. I changed mysql to use utf8.
I don't know what else to do
Please help.
--~--~-~--~~~-
I have a field for emails. I want it to be blank if nothing in there
and unique if something is. I get a duplicate field error if I have to
messages with blank fields. I can use null = True and it works, but
django's admin blows up. I seen some stuff, but no real solution. Does
anyone have a good
I am just starting coding with django. So please bear with me.
I made a change to my User model so the field email_addr is now email.
I deleted the database, made new tables with manage.py, did a resync,
and changed all the code that refered to email_addr to email.
Everything looks fine, but I st
Tracey wrote:
> On Tue, Apr 7, 2009 at 1:29 PM, CrabbyPete wrote:
>
> > I am trying to save a message that has a registered trademark
> > character in it, like Coke is a registered trademark.
> > I get a DjangoDecodeError. How do I prevent this from happening?
>
> Wil
Is there any advantage to using the Group class in contrib.auth, over
making your own group. Or is it best to extend Group?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group,
I created the following:
class Profile(models.Model):
user= models.ForeignKey(User, unique=True)
phone = models.CharField(max_length=15, blank = True, null
= True, unique = True)
def __unicode__(self):
return self.user.username
But when I look at it in the Adm
I just started using forms and I have the following html
Zip Code:
How do you specify the class type for the input field.
I created a form
class Address(form.Forms)
zip = forms.CharField(label = 'Zip Code:',max_length =
15)
This changes the label
Zip Code: {{ form.zip }}
-
Thanks
On May 11, 12:06 pm, David Zhou wrote:
> On Mon, May 11, 2009 at 12:04 PM, CrabbyPete wrote:
>
> > I just started using forms and I have the following html
> > Zip Code: > size="15" maxlength="15">
>
> > How do you specify
I want to create a list of items from the most recently added to the
oldest. I tried this
message = Message.objects.reverse('date_added')
It still returned the oldest items first. What is the best way to
return the newest item first?
--~--~-~--~~~---~--~~
You rece
Never mind I figured it out.
On May 21, 10:42 am, CrabbyPete wrote:
> I want to create a list of items from the most recently added to the
> oldest. I tried this
> message = Message.objects.reverse('date_added')
>
> It still returned the oldest items first. What is the
I am trying to make a selector in a forms based on information in the
database.
The selector uses a tuple like this:
PEOPLE = (('john','adams'),('sam','smith'),('john','doe'), ...)
if I start a tuple with ( ('john","adams"))
if I start with PEOPLE = (('john','adams')) how do I add the
subs
If I have a form and if form.is_valid is False
The code code in the template {{ form.name.errors}} formats the error
like this.
This field is required.
How do you add an error so it gets formatted with the surrounding
html. If a user name already exists I want to add the error message
'User na
I wanted to see if I could deploy my project on Apache on a windows
server using mod_wsgi. I got it working. The only problem is now I
can not run the development environment using manage.py I am using
Pyscripter and I now get this message every time I run manage.py
Command Line : runserver --no
I am new to django and I am running it on a Windows server. I
installed mod_wsgi with Apache and go it to work, but now when I run
python manage.py runserver. I get the error
Error: Could not import settings 'spot.settings' (Is it on sys.path?
Does it have syntax errors?): No module named setting
Is there a way do something like this with the template system
{% if friend in group.members.all %} or simply {% friend in
group.members.all %}
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To
Where in the django.contrib is the models.EmailField defined? I have
email address that are longer than 60 characters and I want to see if
I can override it.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to dj
I tried for a while, and finally switched to Apache on Windows. It
works great and easy to set up.
On Apr 21, 6:29 am, Nick wrote:
> Hiya
>
> I have exactly the same problem as described here.
>
> Did you (or anyone) find a fix or workaround for this?
>
> Cheers!
> Nick.
>
> On Apr 14, 12:24 pm,
;
> On Apr 20, 5:00 pm,CrabbyPete wrote:
>
> > Where in the django.contrib is the models.EmailField defined? I have
> > email address that are longer than 60 characters and I want to see if
> > I can override it.
>
> > --
> > You received this message becau
Thanks. That helps. At least I know someone else is facing the same
thing.
On Apr 21, 2:20 pm, Tom Evans wrote:
> On Wed, Apr 21, 2010 at 6:22 PM, CrabbyPete wrote:
> > Yes, but my problem is its defined in contrib.auth.User with no
> > length, which I assume defaults to 60.
I have code that generates a file for download. I want to close the
window after the user selects the download or even redirect them.
Here is my code:
response = HttpResponse(cal.as_string(), mimetype='text/calendar')
response['Content-Disposition'] = 'attachment; filename=schedule.ics'
return re
Does anyone know how to track if a download completed?
On May 6, 9:52 pm, CrabbyPete wrote:
> I have code that generates a file for download. I want to close the
> window after the user selects the download or even redirect them.
>
> Here is my code:
>
> response = HttpResp
should be
AUTH_PROFILE_MODULE = 'app_name.Profile'
On May 11, 10:15 am, Bill Freeman wrote:
> Is AUTH_PROFILE_MODULE set correctly in settings.py?
>
>
>
> On Tue, May 11, 2010 at 6:43 AM, django_jedi wrote:
> > OK, I'm baffled. I must be missing something right in front of my
> > face...
>
> >
I want to insert a html calendar into an existing web page. What is
the best way to insert html into a template that I have for the web
page?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us...@googl
Brian,
Thanks. The safe filter worked for me. I was writing it to a file and
then doing an {% include calendar %}, but your solution worked out.
On May 18, 7:00 pm, Brian Neal wrote:
> On May 18, 2:00 pm,CrabbyPete wrote:
>
> > I want to insert a html calendar into an existing web p
I never saw Dajax, but after reading I see it supports Jquery. I use
mootools and Jquery and both are great. Dajax just seem to integrate
them into django a little easier.
On Jul 12, 6:36 am, Imad Elharoussi wrote:
> Hi,
>
> I want to know what's the best plugin of Ajax to use with django Dajax
www.webfaction.com
On Jul 29, 12:02 pm, kostia wrote:
> We are PROJECTOR team. We have a web site, developed on Django /
> Python.
>
> The site is temporarily launched with test data herehttp://kostia.pythonic.nl/
>
> We are working with github herehttp://github.com/vaxXxa/projector
>
> The web s
I have a spreadsheet of football games that I wanted to get into an
sqlite3 database. I converted it to json, but when i loaded it I was
required to put the date in -MM-DD format. So I changed it. The
problem is now when I run the admin and look at the game I get this
error
TemplateSyntaxError
Thanks Shawn. I looked back in my model and found I left off something
in my unicode.
On Sep 24, 1:44 pm, Shawn Milochik wrote:
> We need more information. Preferably the full traceback.
>
> In short, something is trying to add a date object to a unicode text
> object. Possibly the date as a da
Yes.
On Sep 26, 7:48 am, aug dawg wrote:
> Does Django work with JavaScript? If so, how can I use JavaScript in my
> Django projects?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us...@googlegroup
I developed Djano on a windows server and everything went smoothly
except getting it to work with IIS. I loaded apache on windows and it
works great.
On Dec 1, 6:43 am, ashdesigner wrote:
> Hello,
>
> I am absolutely new to Python/Django. Being responsible for a large
> corporate startup project
Does this mean that we shouldn't even try to run it on IIS7 in
> production?
>
> On Dec 1, 4:27 pm, CrabbyPete wrote:
>
> > I developed Djano on a windows server and everything went smoothly
> > except getting it to work with IIS. I loaded apache on windows and
Windows is a great platform to work on. There are loads of tools and
support for Windows. The issue is not Windows vs Linux
the issue is Apache ( which works great on Windows ) v IIS. If your
admin is wants to use Windows by all means stick with it, and just
install Apache. I developed on Windows a
I want to use greybox to show a login form. My question is what is the
best way to do this?
Here is the line I am using in m template
Login
Should I directly link to the form, or use {% url xxx %}, or is there
something else I should do?
Also can I send it back up if I get errors? Any advice much
Thanks, but I was not clear in my question. If I use jQuery or any
other javascript framework, to do a modal window from a link I have to
load some html code that is the form
Here is an example using thickbox in a template
login
In a view I load an html template with get_template()
Do I do
I have form with where users can upload an image. All works well but I
want a graphic instead of the default browse button that shows up. Can
I change it and if so how do you change it in the form field or
template?
class ProfileForm(SignUpForm):
mugshot = forms.ImageField (requ
I have code that allows an anonymous user to look at some elses page,
but I want to limit what they can do so I have the following code
def show(request):
u = request.GET['friend']
user = User.objects.get(pk=u)
visit = user.is_authenticated()
visit should be false, but it keeps com
I subclassed the django comment app model, because I wanted to add
photos.
class PictureComment( Comment ):
photos = models.ManyToManyField(Photos)
In my template I use
{% get_comment_list for message as comment_list %}
{% for comment in comment_list %}
{% endfor %}
and the lis
Sorry I did not finish.
How do I get the subclass PictureComment, not Comment.
On Feb 25, 4:13 pm, CrabbyPete wrote:
> I subclassed the django comment app model, because I wanted to add
> photos.
>
> class PictureComment( Comment ):
> photos = models.ManyToM
I am trying to integrate pyfacebook into a existing project, and its
driving me nuts. I just want users to be able to sign in with
facebook. Anyone else try this and any recommendations.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post t
The Imagefile is just a pointer to file. Here is what I do to upload
and resize an image. I hope it helps.
file_to_open = settings.MEDIA_ROOT+'//profiles//'+
user.username+'-'+file.name
fd = open(file_to_open, 'wb+')
if file.multiple_chunks():
for chunk in file
I am connecting facebook to an app I have running. In order not to
change a load of code I created a dummy account when someone logs in
through facebook. My only problem is I want to authenticate with this
account when they log Is there a way to login in a user using the
encrypted password. I am u
backend = backend
> if hasattr(user, 'backend'):
> login(request, user)
>
> On 25 Mar, 18:27, CrabbyPete wrote:> I am connecting
> facebook to an app I have running. In order not to
> > change a load of code I created a dummy acco
I am using pyfacebook and when I run the debug server I get the
following:
C:\Python26\lib\site-packages\facebook\djangofb\__init__.py:185:
DeprecationWarning: Calling the deprecated function 'new_wrapper'
Downgrade to decorator 2.3 if you want to use this functionality
return decorator.new_wrap
I am fooling around with the facebook api. Facebook gives you a proxy
email address that is to big for the current User email field. Is
there a way to extend this field, or should I use another field
completely.
--
You received this message because you are subscribed to the Google Groups
"Django
I am using
from django.core.mail import EmailMessage
and I have the following code
msg = EmailMessage ( subject = subject,
body = body,
from_email = sender,
to
I have the following code:
msg = EmailMessage ( subject = subject,
body = body,
from_email = sender,
to = receivers,
I have the following models:
class Deal(models.Model):
"""
Deal is a deal for Interest. There should only be one
deal for each Interest pair
"""
interest = models.ForeignKey( Interest )
max_sell = models.IntegerField(default = 1)
def terms(self):
retur
I developed my code with python 2.6 and django 1.3. Now that I am
deploying it on a dreamhost server the python is version 2.5 and I get
the error above. Is there a work around. Do I need to upgrade python?
--
You received this message because you are subscribed to the Google Groups
"Django user
Type: ViewDoesNotExist at /
Exception Value: Could not import base.views. Error was: No module
named io
On Aug 27, 10:06 pm, sreekanth wrote:
> Hi,
>
> Please check the path , as you changed to a new server and also check the
> permissions.
>
>
>
>
>
>
>
> On S
This is what I suspected. Even though Django 1.3 is supposed to
support python 2.5
On Aug 29, 3:53 am, Łukasz Rekucki wrote:
> It's not a path problem. It's a python version problem:
>
> http://docs.python.org/library/io.html
>
> "New in version 2.6."
>
> It's not a problem with Django as 1.3 run
I have the following class defined
class TeamView(TemplateResponseMixin, View):
template_name = 'team.html'
def get(self, request):
if 'team' in request.GET:
team = Team.objects.get(id = request.GET['team'])
form = TeamForm( )
else:
tea
I am fooling around with django generic class views, and I was
wondering if its possible to actually build class views per item for
example I have the following class view.
class TeamView( View, TemplateResponseMixin ):
template_name = 'team.html'
def get(self, request):
if 'team
opics/http/urls/#what-the-urlc...
>
> Just for the record, there's a generic class view, called DeleteView, that
> you should use, but as a different view.
>
> Hope that helps. ;)
>
> []'s
>
> On Sat, Oct 8, 2011 at 11:12 AM, CrabbyPete wrote:
> > I am fo
I've used Ubuntu 11.0 on an EC2 micro, using nginx and uwsgi and its
great. There is also a google group for ubuntu on ec2, with loads of
support. If you use uwsgi you have to compile it on the server. I had
a tough time using Amazons version, I don't remember why, but had no
problem using Ubuntu.
I have a site with lots of views. When someone comes to my site and is
not logged in I direct them to the homepage to login. However a user
could type in a whole url for a view and it will go there and cause an
error because the view expects the user to be logged in. I could put
logic in every view
I have a site with lots of views. When someone comes to my site and is
not logged in I direct them to the homepage to login. However a user
could type in a whole url for a view and it will go there and cause an
error because the view expects the user to be logged in. I could put
logic in every view
? You are probably doing something against the
> DRY principle.
>
> bye
> Ivo
>
> On Nov 15, 2011, at 17:16 , CrabbyPete wrote:
>
>
>
>
>
>
>
> > I have a site with lots of views. When someone comes to my site and is
> > not logged in I direct them t
I use the following code that I got from a django snippet, which works
great if you want to have radio buttons with different types of fields
associated with them
from django import forms
from django.utils.encoding import for
Do want to initialize a choice field? You can do this with forms
class SomeForm(forms.Form):
interest = forms.ChoiceField( choices=(),
widget=forms.Select(attrs={})
)
def __init__(self, *args, **kwargs):
super(SomeForm, self).__i
I wanted to combine two models into one form so I created the
following
class UserForm( ModelForm ):
class Meta:
model = User
fields = ('email','first_name','last_name')
class ProfileForm( ModelForm ):
class Meta:
model = Profile
class UserProfile ( UserForm, Prof
Roll your own and use packages like django-authorize and django-paypal
they are easy to use and don't bring along lots of baggage.
On Dec 6, 8:19 am, Andre Terra wrote:
> I haven't worked with either one of them, but satchmo[1] is also often
> mentioned.
>
> Django packages also has a list of e-c
_name')
class ProfileForm ( UserForm ):
class Meta(UserForm.Meta):
document = Profile
On Dec 4, 11:56 am, akaariai wrote:
> On Dec 4, 6:05 pm,CrabbyPete wrote:
>
>
>
>
>
>
>
>
>
> > I wanted to combine two models into one form so I c
net?
> I can't find a django-authorize.
>
> Thanks,
> Dennis
>
> On Dec 6, 9:04 am, CrabbyPete wrote:
>
>
>
>
>
>
>
> > Roll your own and use packages like django-authorize and django-paypal
> > they are easy to use and don't bring along
According to the documentation I can iterate radio buttons
{% for radio in myform.beatles %}
{{ radio }}
{% endfor %}
I want to do the same for checkboxes, but get
TemplateSyntaxError
Exception Value:
Caught TypeError while rendering: 'BoundField' object is not iterable
My field is
class
I have the following form:
DEAL_CHOICES = [
('Standard','Standard'),
('Sponsored','Sponsored'),
('Trial' ,'Trial')
]
class ApplyForm(forms.Form):
deal_type= forms.ChoiceField( required = True,
I am trying to deploy a django project with nginx and uwsgi. I think I
have it all set up right but when I hit the site I get the following
error:
No module named project.urls
I know everything else is working because I still have debug on and
can see that settings.py is being read.
I know I'm fo
Thanks Shawn,
That is exactly what it is. I could have added one path up. I just
changed my
ROOT_URLCONF = 'urls' instead of ROOT_URLCONF = 'project.urls' in my
settings and it works fine.
On Apr 30, 1:42 pm, Shawn Milochik wrote:
> It sounds like your project directory is not on your PYTHONPATH,
I am trying to update a user profile of an existing user with a
LinkedIn profile. My problem is I need an email address, but LinkedIn
does not give you that information. So I have a user create an account
with their email address and ask if they want to link their profile to
their LinkedIn profile.
I took the code below from django-linked in which is code from
oauth2. It works but does not do the callback.
How do you set the call back from oauth2
# from settings.py
consumer = oauth.Consumer(settings.LINKEDIN_TOKEN,
settings.LINKEDIN_SECRET)
client = oauth.Client(consumer)
request_token_url
I'm trying to access LinkedIn using Oauth. I don't want to log in with
it, just get user info from it. I'm using a call back which creates an
anonymous session on the callback. I want to save the session of the
user who initiated the callback. Is there a way to save a session and
then restore it ba
Yaroslav,
I tried and tried to get Django to work with IIS on my Windows Server,
but could not get it to work. I would love to know how you did it. I
finally gave up and installed Apache on Windows. Will this work with
an existing Django project?
Pete
On Jun 15, 2:52 am, Yaroslav Govorunov wrot
I am trying to do the same thing. Did you ever get a response?
On Jun 16, 11:55 am, NateB wrote:
> Hello all,
>
> I posted this to stackoverflow a couple weeks ago, but I have yet to get any
> takers. I was able to backburner this for a little bit, but I'd like to see
> it wrapped up.
>
> In my
Here is the closest snippet I found that works well for using 1 other
field. I have 2 other fields and I guess I'll try to modify it. If you
have any other snippets
or suggestions please let me know.
http://djangosnippets.org/snippets/863/
On Jul 14, 3:56 pm, Bill Freeman wrote:
> Unless thing
[ ('a','Until
Cancel', forms.RadioSelect),
('b','Until Date', forms.DateInput),
('c','Until Count', forms.TextInput)
] )
On Jul 16, 10:08 am, CrabbyPete wrote
Have you got django to run on II7 at all. I tried it and was not able
to get it to work. If you did I'd love to try it and see what comes up
with it.
On Jul 22, 7:46 am, The Ape wrote:
> Hi,
>
> I am running Django (1.3) with PyISAPIe (Python 2.6.6) on IIS7.
> I am using the Django tutorial pages
I've been doing this with no problem here is the top of my routine
that runs on its own. After this just write what code you want to run
import os, sys
from os.pathimport abspath, dirname, join,split
from site import addsitedir
# Set up the environment
I've run django on Windows Server with apache and it was easy to
deploy. Forget IIS. I've deployed Nginx and uWSGI on linux and that
was even easier.
I've never done Nginx on windows, but I don't think it would be a big
deal.
On Jul 26, 1:25 pm, Dimitry Zolotaryov wrote:
> So if I run into perfo
PS, I used mod_wsgi and make sure you have the latest pywin32
On Jul 26, 2:03 pm, CrabbyPete wrote:
> I've run django on Windows Server with apache and it was easy to
> deploy. Forget IIS. I've deployed Nginx and uWSGI on linux and that
> was even easier.
> I've never
I've used South and I love it, but when I ran it for my latest
database I got this
C:\> manage.py migrate base
Running migrations for base:
- Migrating forwards to 0001_initial.
> base:0001_initial
! Error found during real run of migration! Aborting.
! Since you have a database that does n
I'm using the django template system for format a text email. I send
it a dictionary and it formats the output. The problem is that it
inserts lots of newlines
Here is the template, and reports is a dictionary that contains an
event and a dictionary of interests
Weekly Contact List For {{date}}
{
otice the - after the % sign. This tells jinja2 to remove the
> > previousnewlinecharacter. You can also add them at the closing % to
> > remove the followingnewlinecharacter.
>
> > It is pretty easy to use with Django (and many people do), and you can
> > just use it for
You have to set up the run environment. Make sure on run manage.py and
the parameters are runserver x.x.x.x:000 where x.x.x.x is the server
and :000 is the port you want to run from. After that it should not
ask anything and run off your settings.
On Dec 29, 7:38 pm, Emmanuel Mayssat wrote:
> I
Good Luck. Just start banging it out. You'll see as you go how much
more there is.
On Jan 1, 11:24 pm, Kyle wrote:
> I am wanting to create an app that helps me organize sheet music. I
> want to be able to sort by the artist. Every piece of sheet music I
> have I want to be scanned in and uploade
I use pydev to debug my python apps, but I can not break on a
decorated function. Anyone know why and how to fix it?
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscri
I am going nuts this should be simple but I keep getting a
verification error every time in my response in the following code. I
double checked my APP_ID and SECRET I try the following code. I'm
using python2.5. Any help appreciated.
def login( request ):
parms = { 'client_id': settings.FACE
http://www.asmallorange.com/
On Jan 26, 12:36 am, GSV wrote:
> for small project.
>
> Thank you
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group,
Thanks I figured it out. I should just use request.path I used
request.get_full_path() which returns the whole request including the ?
code=xxx which messed me up.
On Jan 26, 12:07 am, Matias Aguirre wrote:
> Hi,
>
> Is your request.get_host() the same defined in Facebook app settings? (Web
> s
I managed to log into facebook using the graph api, I store the FB id
and tie it to a User, like this
class FacebookUser(models.Model):
user= models.ForeignKey(User)
fb_uid = models.CharField( max_length=100, blank = True,
unique = True )
access_token= models.C
Thanks, but no. I'm running it on Firefox now.
On Jan 30, 3:43 pm, Aljoša Mohorović
wrote:
> On Sun, Jan 30, 2011 at 6:30 AM, CrabbyPete wrote:
> > I log in and all is good except I loose the session if I go to another
> > web site and come back.
>
> if this is facebo
I am loosing the django session.
On Jan 31, 8:44 am, "christian.posta"
wrote:
> Which session are you losing?
> The django authenticated session, or the facebook session?
>
> On Jan 29, 10:30 pm, CrabbyPete wrote:
>
>
>
>
>
>
>
> > I managed to l
Mon, Jan 31, 2011 at 2:59 PM, CrabbyPete wrote:
> > I am loosing the django session.
>
> try setting the P3P on response:
> response['P3P:CP'] = "IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi
> HIS OUR IND CNT"
> it probably wont help but it fixes th
I have the following code:
def sites(request):
if 'url' in request.GET:
url = request.GET['url']
website = WebSite.objects.get( url = url )
form = WebSiteForm(instance = website)
return submit_web_form( request, form )
else:
form = WebSiteForm(reque
I wouldn't reinstall python because of an unresolved import error.
What's unresolved and what type of system are you on PC/Linux?
On Feb 17, 7:48 pm, LJ wrote:
> I installed the latest version of dajaxice, but I am still getting
> Unresolved import errors.
> My guess is that I need to remove and
Ramirez suggested that I look at the site packages (in my case
> > > dist-packages) in my python lib dir.
> > > I did not see anything in there that references dajaxice. I may need
> > > to manually edit the PYTHONPATH once I figure out how and where.
>
> > >
1 - 100 of 109 matches
Mail list logo