[Bug 471437] Re: IndexError: list assignment index out of range

2017-12-25 Thread Pelle van der Scheer
I'm marking this as resolved. If anyone still has this problem, please
comment.

** Changed in: openastro.org
   Status: Incomplete => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/471437

Title:
   IndexError: list assignment index out of range

To manage notifications about this bug go to:
https://bugs.launchpad.net/openastro.org/+bug/471437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 471437] Re: IndexError: list assignment index out of range

2013-01-11 Thread Pelle van der Scheer
Can anyone still reproduce this?

** Changed in: openastro.org
   Status: Confirmed = Incomplete

** Changed in: openastro.org
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/471437

Title:
   IndexError: list assignment index out of range

To manage notifications about this bug go to:
https://bugs.launchpad.net/openastro.org/+bug/471437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2011-01-24 Thread Pelle van der Scheer
** Changed in: openastro.org
 Assignee: (unassigned) = Pelle van der Scheer (pellesimon)

** Changed in: openastro.org
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/471437

Title:
   IndexError: list assignment index out of range

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-12-03 Thread emygdio
Hi,

   I had the same problem, and I made the changes in source code, and
error is the same.

Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/471437

Title:
   IndexError: list assignment index out of range

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-10-04 Thread doom3d
 I cannot save entries to database where the name or location contains 
non-english characters like éáűőúöüó. 
It works propely with Paks city, and doesn't work with Szekszárd city, Mr. 
Kovács, or Hajdú-Bihar county etc.
 I don't know if it is related to  the original bug, or to the bugfix described 
above, or independent.

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 471437] Re: IndexError: list assignment index out of range

2010-09-24 Thread doom3d
I had the same problem with Ubuntu 10.04 and openastro.org 1.1.23. I followed 
the instruction that Hieronymus wrote on 2010-08-14. Now it works for me, even 
from the start menu. 
 Thanks.

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-09-01 Thread Brian Murray
Thank you for taking the time to report this bug and trying to help make Ubuntu 
better.  However, it seems that you are not using a software package provided 
by the official Ubuntu repositories.  Because of this the Ubuntu project can 
not support or fix your particular bug.  Please report this bug to the provider 
of the software package.  Thanks! 
If you are interested in learning more about software repositories and Ubuntu 
the following pages should be informative:
1. http://www.ubuntu.com/community/ubuntustory/components - information about 
Ubuntu repositories
2. https://help.ubuntu.com/community/Repositories - information regarding 
managing repositories.

** Changed in: ubuntu
   Status: New = Invalid

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-08-16 Thread fano05
Same...

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


RE: [Bug 471437] Re: IndexError: list assignment index out of range

2010-08-15 Thread a. k.

 Date: Sat, 14 Aug 2010 19:50:05 +
 From: 471...@bugs.launchpad.net
 To: tuhatka...@hotmail.com
 Subject: [Bug 471437] Re:  IndexError: list assignment index out of range
 
 I think it is a translation problem.
 
 I did what Kanor told us to do here 
 http://forum.ubuntu-fr.org/viewtopic.php?id=410923p=2
 and now Openastro can launch itself
 
 ---
 
 You have to change some code in the file /usr/bin/openastro.py
 
 Console :
 
 sudo gedit  /usr/bin/openastro.py
 
 Look for these lines :
 
 try:
   TRANSLATION[default] = gettext.translation(openastro,TDomain)
 except IOError:
   TRANSLATION[default] = 
 gettext.translation(openastro,TDomain,languages=['en'])
   print OpenAstro.org has not yet been translated in your language!
 
 And change them for these lines :
 
 #try:
 #  TRANSLATION[default] = gettext.translation(openastro,TDomain)
 #except IOError:
 TRANSLATION[default] = 
 gettext.translation(openastro,TDomain,languages=['en'])
 #  print OpenAstro.org has not yet been translated in your language!
 
 It is a encoding problem
 
 next time you lauch OpenAstro, do it this way in console:
 
 openastro.py --dbcheck
 
 -- 

Cheers for the tip. I did everything described, and now I get yet
another different bug:

Traceback (most recent call last):
  File /usr/local/bin/openastro.py, line 6068, in module
db = openAstroSqlite()
  File /usr/local/bin/openastro.py, line 678, in __init__
self.cursor.execute(sql,values)
sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a 
text_factory that can interpret 8-bit bytestrings (like text_factory = str). It 
is highly recommended that you instead just switch your application to Unicode 
strings.

... ;P

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-08-14 Thread aurejac
On 2010-08-14
with Lucid 64 :
arn...@davis:~$ /usr/bin/openastro.py
Traceback (most recent call last):
  File /usr/bin/openastro.py, line 6070, in module
mainWindow()
  File /usr/bin/openastro.py, line 2807, in __init__
self.tempfilename = openAstro.makeSVG()
  File /usr/bin/openastro.py, line 1305, in makeSVG
module_data = 
ephemeris.ephData(self.year,self.month,self.day,self.hour,self.geolon,self.geolat,self.altitude,self.planets,self.zodiac,db.astrocfg)
  File /usr/lib/python2.6/dist-packages/openastromod/swiss.py, line 91, in 
__init__
self.planets_sign[i]=x
IndexError: list assignment index out of range

Thank you to get off this bug.

Arnaud

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-08-14 Thread Hieronymus
I think it is a translation problem.

I did what Kanor told us to do here 
http://forum.ubuntu-fr.org/viewtopic.php?id=410923p=2
and now Openastro can launch itself

---

You have to change some code in the file /usr/bin/openastro.py

Console :

sudo gedit  /usr/bin/openastro.py

Look for these lines :

try:
  TRANSLATION[default] = gettext.translation(openastro,TDomain)
except IOError:
  TRANSLATION[default] = 
gettext.translation(openastro,TDomain,languages=['en'])
  print OpenAstro.org has not yet been translated in your language!

And change them for these lines :

#try:
#  TRANSLATION[default] = gettext.translation(openastro,TDomain)
#except IOError:
TRANSLATION[default] = 
gettext.translation(openastro,TDomain,languages=['en'])
#  print OpenAstro.org has not yet been translated in your language!

It is a encoding problem

next time you lauch OpenAstro, do it this way in console:

openastro.py --dbcheck

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-07-27 Thread Hieronymus
Same error in Lucid Lynx

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 471437] Re: IndexError: list assignment index out of range

2010-07-24 Thread fano05
Hi,
I sorry, but I don't speak very well English.I get too the same problem :

File /usr/bin/openastro.py, line 6070, in module
mainWindow()
  File /usr/bin/openastro.py, line 2807, in __init__
self.tempfilename = openAstro.makeSVG()
  File /usr/bin/openastro.py, line 1305, in makeSVG
module_data = 
ephemeris.ephData(self.year,self.month,self.day,self.hour,self.geolon,self.geolat,self.altitude,self.planets,self.zodiac,db.astrocfg)
  File /usr/lib/python2.6/dist-packages/openastromod/swiss.py, line 91, in 
__init__
self.planets_sign[i]=x
IndexError: list assignment index out of range.

I don't make myself... HELP!
Thanks very much, Stéphane.


** Also affects: ubuntu
   Importance: Undecided
   Status: New

-- 
 IndexError: list assignment index out of range
https://bugs.launchpad.net/bugs/471437
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs