Unable to update erpnext (continued)

i am attempting to follow update instructions at https://github.com/webnotes/erpnext/wiki/WSGI-Production-Deployment to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master 
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt


I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at 

./lib/wnf.py --build 

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.  

Any suggestions?


------------------------------

Writing translations...
Traceback (most recent call last):
  File "./lib/wnf.py", line 803, in <module>
    main()
  File "./lib/wnf.py", line 23, in main
    run(fn, parsed_args)
  File "./lib/wnf.py", line 43, in run
    out = globals().get(fn)(**args)
  File "./lib/wnf.py", line 34, in new_fn
    return fn(*args, **new_kwargs)
  File "./lib/wnf.py", line 348, in build
    webnotes.build.bundle(False)
  File "lib/webnotes/build.py", line 20, in bundle
    check_lang()
  File "lib/webnotes/build.py", line 52, in check_lang
    update_translations()
  File "lib/webnotes/translate.py", line 86, in update_translations
    import_messages(lang, filename)
  File "lib/webnotes/translate.py", line 311, in import_messages
    for (basepath, folders, files) in os.walk('.'):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 284, in walk
    if isdir(join(top, name)):
  File "/usr/lib/python2.7/posixpath.py", line 71, in join
    path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 21: ordinal not in range(128)




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Jonathan,

You can put the statement in a try block and continue for now. Seems related to a file with a non ASCII filename. If you can debug the source, then great!

- Rushabh


On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan wrote:
i am attempting to follow update instructions at https://github.com/webnotes/erpnext/wiki/WSGI-Production-Deployment to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master 
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt


I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at 

./lib/wnf.py --build 

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.  

Any suggestions?


------------------------------

Writing translations...
Traceback (most recent call last):
  File "./lib/wnf.py", line 803, in <module>
    main()
  File "./lib/wnf.py", line 23, in main
    run(fn, parsed_args)
  File "./lib/wnf.py", line 43, in run
    out = globals().get(fn)(**args)
  File "./lib/wnf.py", line 34, in new_fn
    return fn(*args, **new_kwargs)
  File "./lib/wnf.py", line 348, in build
    webnotes.build.bundle(False)
  File "lib/webnotes/build.py", line 20, in bundle
    check_lang()
  File "lib/webnotes/build.py", line 52, in check_lang
    update_translations()
  File "lib/webnotes/translate.py", line 86, in update_translations
    import_messages(lang, filename)
  File "lib/webnotes/translate.py", line 311, in import_messages
    for (basepath, folders, files) in os.walk('.'):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 284, in walk
    if isdir(join(top, name)):
  File "/usr/lib/python2.7/posixpath.py", line 71, in join
    path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 21: ordinal not in range(128)




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Hi there,

I'm a colleague of Jonathan, and frankly we are a bit frustrated here. It seems unreasonably difficult to update the system.
So we would now like to ask you for direct support to finish the update. We are willing to subscribe to your support plan if that is the prerequisite.
Please let us know how to proceed.

Thanks,
André


On Sunday, January 26, 2014 9:10:44 AM UTC+1, rushabh wrote:
Jonathan,

You can put the statement in a try block and continue for now. Seems related to a file with a non ASCII filename. If you can debug the source, then great!

- Rushabh


On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan wrote:
i am attempting to follow update instructions at https://github.com/webnotes/erpnext/wiki/WSGI-Production-Deployment to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master 
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt


I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at 

./lib/wnf.py --build 

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.  

Any suggestions?


------------------------------

Writing translations...
Traceback (most recent call last):
  File "./lib/wnf.py", line 803, in <module>
    main()
  File "./lib/wnf.py", line 23, in main
    run(fn, parsed_args)
  File "./lib/wnf.py", line 43, in run
    out = globals().get(fn)(**args)
  File "./lib/wnf.py", line 34, in new_fn
    return fn(*args, **new_kwargs)
  File "./lib/wnf.py", line 348, in build
    webnotes.build.bundle(False)
  File "lib/webnotes/build.py", line 20, in bundle
    check_lang()
  File "lib/webnotes/build.py", line 52, in check_lang
    update_translations()
  File "lib/webnotes/translate.py", line 86, in update_translations
    import_messages(lang, filename)
  File "lib/webnotes/translate.py", line 311, in import_messages
    for (basepath, folders, files) in os.walk('.'):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 284, in walk
    if isdir(join(top, name)):
  File "/usr/lib/python2.7/posixpath.py", line 71, in join
    path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 21: ordinal not in range(128)




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.

Shall we proceed to get access? If it is a one time thing, then is it
fair to do it free of cost (I’m am in favour. prima facie, only build
part is stuck).

---------- Forwarded message ----------
From: André an...@gmail.com
Date: Mon, Jan 27, 2014 at 11:00 PM
Subject: [erpnext-dev] Re: unable to update erpnext (continued)
To: er...@googlegroups.com

Hi there,

I’m a colleague of Jonathan, and frankly we are a bit frustrated here.
It seems unreasonably difficult to update the system.
So we would now like to ask you for direct support to finish the
update. We are willing to subscribe to your support plan if that is
the prerequisite.
Please let us know how to proceed.

Thanks,
André

On Sunday, January 26, 2014 9:10:44 AM UTC+1, rushabh wrote:

Jonathan,

You can put the statement in a try block and continue for now. Seems related to a file with a non ASCII filename. If you can debug the source, then great!

  • Rushabh

On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan wrote:

i am attempting to follow update instructions at WSGI Production Deployment · webnotes/erpnext Wiki · GitHub to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt

I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at

./lib/wnf.py --build

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.

Any suggestions?


Writing translations…
Traceback (most recent call last):
File “./lib/wnf.py”, line 803, in
main()
File “./lib/wnf.py”, line 23, in main
run(fn, parsed_args)
File “./lib/wnf.py”, line 43, in run
out = globals().get(fn)(**args)
File “./lib/wnf.py”, line 34, in new_fn
return fn(*args, **new_kwargs)
File “./lib/wnf.py”, line 348, in build
webnotes.build.bundle(False)
File “lib/webnotes/build.py”, line 20, in bundle
check_lang()
File “lib/webnotes/build.py”, line 52, in check_lang
update_translations()
File “lib/webnotes/translate.py”, line 86, in update_translations
import_messages(lang, filename)
File “lib/webnotes/translate.py”, line 311, in import_messages
for (basepath, folders, files) in os.walk(‘.’):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 284, in walk
if isdir(join(top, name)):
File “/usr/lib/python2.7/posixpath.py”, line 71, in join
path += ‘/’ + b
UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xc3 in position 21: ordinal not in range(128)


Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as
    much information as you can. Please see it from the point of view of
    the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com
    and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services.
    Do not send images as attachments. Links are good. Same goes for any
    file you are going to send.

End of Note

You received this message because you are subscribed to the Google
Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to erpnext-developer-forum+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Pratik
erpnext

Your call! We need to keep the light on too. Do it an then ask them to make a donation let them decide the amount.

Sent from mobile

On 28-Jan-2014, at 1:11 AM, Pratik Vyas pd...@gmail.com wrote:

Shall we proceed to get access? If it is a one time thing, then is it
fair to do it free of cost (I’m am in favour. prima facie, only build
part is stuck).

---------- Forwarded message ----------
From: André an...@gmail.com
Date: Mon, Jan 27, 2014 at 11:00 PM
Subject: [erpnext-dev] Re: unable to update erpnext (continued)
To: er...@googlegroups.com

Hi there,

I’m a colleague of Jonathan, and frankly we are a bit frustrated here.
It seems unreasonably difficult to update the system.
So we would now like to ask you for direct support to finish the
update. We are willing to subscribe to your support plan if that is
the prerequisite.
Please let us know how to proceed.

Thanks,
André

On Sunday, January 26, 2014 9:10:44 AM UTC+1, rushabh wrote:

Jonathan,

You can put the statement in a try block and continue for now. Seems related to a file with a non ASCII filename. If you can debug the source, then great!

  • Rushabh

On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan wrote:

i am attempting to follow update instructions at WSGI Production Deployment · webnotes/erpnext Wiki · GitHub to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt

I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at

./lib/wnf.py --build

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.

Any suggestions?


Writing translations…
Traceback (most recent call last):
File “./lib/wnf.py”, line 803, in
main()
File “./lib/wnf.py”, line 23, in main
run(fn, parsed_args)
File “./lib/wnf.py”, line 43, in run
out = globals().get(fn)(**args)
File “./lib/wnf.py”, line 34, in new_fn
return fn(*args, **new_kwargs)
File “./lib/wnf.py”, line 348, in build
webnotes.build.bundle(False)
File “lib/webnotes/build.py”, line 20, in bundle
check_lang()
File “lib/webnotes/build.py”, line 52, in check_lang
update_translations()
File “lib/webnotes/translate.py”, line 86, in update_translations
import_messages(lang, filename)
File “lib/webnotes/translate.py”, line 311, in import_messages
for (basepath, folders, files) in os.walk(‘.’):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 284, in walk
if isdir(join(top, name)):
File “/usr/lib/python2.7/posixpath.py”, line 71, in join
path += ‘/’ + b
UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xc3 in position 21: ordinal not in range(128)

Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as
    much information as you can. Please see it from the point of view of
    the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com
    and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services.
    Do not send images as attachments. Links are good. Same goes for any
    file you are going to send.

End of Note

You received this message because you are subscribed to the Google
Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send
an email to erpnext-developer-forum+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Pratik
erpnext

Andre,

Will be happy if you can support the product and its development by making a contribution: https://www.erpnext.com/modes-of-payment.html

We will fix this issue and update you anyways.

best,
Rushabh




On Monday, January 27, 2014 11:00:40 PM UTC+5:30, André wrote:
Hi there,

I'm a colleague of Jonathan, and frankly we are a bit frustrated here. It seems unreasonably difficult to update the system.
So we would now like to ask you for direct support to finish the update. We are willing to subscribe to your support plan if that is the prerequisite.
Please let us know how to proceed.

Thanks,
André


On Sunday, January 26, 2014 9:10:44 AM UTC+1, rushabh wrote:
Jonathan,

You can put the statement in a try block and continue for now. Seems related to a file with a non ASCII filename. If you can debug the source, then great!

- Rushabh


On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan wrote:
i am attempting to follow update instructions at https://github.com/webnotes/erpnext/wiki/WSGI-Production-Deployment to update an existing ERPNext installation which we have not been able to update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete. So far I have found that before attempting

./lib/wnf.py --pull origin master 
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt


I also got a crash in one of the wnf.py steps because a custom checkbox variable was given a default value of 1. Removing that default got me to the next step. Currently I am stuck at 

./lib/wnf.py --build 

See the stack trace below.

I have seen a similar crash in the past when a support ticket field had an umlaut character in it.  

Any suggestions?


------------------------------

Writing translations...
Traceback (most recent call last):
  File "./lib/wnf.py", line 803, in <module>
    main()
  File "./lib/wnf.py", line 23, in main
    run(fn, parsed_args)
  File "./lib/wnf.py", line 43, in run
    out = globals().get(fn)(**args)
  File "./lib/wnf.py", line 34, in new_fn
    return fn(*args, **new_kwargs)
  File "./lib/wnf.py", line 348, in build
    webnotes.build.bundle(False)
  File "lib/webnotes/build.py", line 20, in bundle
    check_lang()
  File "lib/webnotes/build.py", line 52, in check_lang
    update_translations()
  File "lib/webnotes/translate.py", line 86, in update_translations
    import_messages(lang, filename)
  File "lib/webnotes/translate.py", line 311, in import_messages
    for (basepath, folders, files) in os.walk('.'):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 294, in walk
    for x in walk(new_path, topdown, onerror, followlinks):
  File "/usr/lib/python2.7/os.py", line 284, in walk
    if isdir(join(top, name)):
  File "/usr/lib/python2.7/posixpath.py", line 71, in join
    path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 21: ordinal not in range(128)




Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.

Hi André,

Please have a look at this commit:

It hasn’t been merged into master branch, but you can try it out locally. Just 4 lines need to be added. It should take care of the ascii UnicodeDecodeError.

Best,
Anand Doshi.

On 28 January 2014 at 12:21:59 pm, rushabh (rm...@gmail.com) wrote:

Andre,

Will be happy if you can support the product and its development
by making
a contribution: https://www.erpnext.com/modes-of-payment.html

We will fix this issue and update you anyways.

best,
Rushabh

On Monday, January 27, 2014 11:00:40 PM UTC+5:30, André wrote:

Hi there,

I’m a colleague of Jonathan, and frankly we are a bit frustrated
here. It
seems unreasonably difficult to update the system.
So we would now like to ask you for direct support to finish the
update.
We are willing to subscribe to your support plan if that is the
prerequisite.
Please let us know how to proceed.

Thanks,
André

On Sunday, January 26, 2014 9:10:44 AM UTC+1, rushabh wrote:

Jonathan,

You can put the statement in a try block and continue for now.
Seems
related to a file with a non ASCII filename. If you can debug
the source,
then great!

  • Rushabh

On Saturday, January 25, 2014 3:57:27 AM UTC+5:30, Jonathan
wrote:

i am attempting to follow update instructions at
WSGI Production Deployment · webnotes/erpnext Wiki · GitHub
to
update an existing ERPNext installation which we have not
been able to
update since about September 2013.

The WSGI-Production-Deployment instructions are incomplete.
So far I
have found that before attempting

./lib/wnf.py --pull origin master
./lib/wnf.py --latest
./lib/wnf.py --build

one had better install at least the following:

easy_install -U distribute
apt-get install python-dev
apt-get install libmysqlclient-dev
pip install -r lib/requirements.txt

I also got a crash in one of the wnf.py steps because a custom
checkbox
variable was given a default value of 1. Removing that default
got me to
the next step. Currently I am stuck at

./lib/wnf.py --build

See the stack trace below.

I have seen a similar crash in the past when a support ticket
field had
an umlaut character in it.

Any suggestions?


Writing translations…
Traceback (most recent call last):
File “./lib/wnf.py”, line 803, in
main()
File “./lib/wnf.py”, line 23, in main
run(fn, parsed_args)
File “./lib/wnf.py”, line 43, in run
out = globals().get(fn)(**args)
File “./lib/wnf.py”, line 34, in new_fn
return fn(*args, **new_kwargs)
File “./lib/wnf.py”, line 348, in build
webnotes.build.bundle(False)
File “lib/webnotes/build.py”, line 20, in bundle
check_lang()
File “lib/webnotes/build.py”, line 52, in check_lang
update_translations()
File “lib/webnotes/translate.py”, line 86, in update_translations
import_messages(lang, filename)
File “lib/webnotes/translate.py”, line 311, in import_messages
for (basepath, folders, files) in os.walk(‘.’):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 294, in walk
for x in walk(new_path, topdown, onerror, followlinks):
File “/usr/lib/python2.7/os.py”, line 284, in walk
if isdir(join(top, name)):
File “/usr/lib/python2.7/posixpath.py”, line 71, in join
path += ‘/’ + b
UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xc3
in position 21:
ordinal not in range(128)


Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us
    as much information as you can. Please see it from the point of
    view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com
    and send only the URL via email
  3. For sending images, use http://imgur.com or other similar
    services. Do not send images as attachments. Links are good.
    Same goes for any file you are going to send.

End of Note

You received this message because you are subscribed to the Google
Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from
it, send an email to erpnext-developer-forum+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Note:

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

End of Note

You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.
To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.