On Mon, Aug 15, 2016 at 7:23 AM, wrote:
> #!/usr/bin/env python3
>
> import sys
> sys.path.insert(1, '@pythondir@')
>
> from mkbib.main import mkbib
> if __name__ == "__main__":
> app = mkbib()
> r = app.run()
> sys.exit(r)
>
>
> Now, the problem is it is compiling fine (make; make in
On Monday, August 15, 2016 at 12:39:33 AM UTC+2, Lawrence D’Oliveiro wrote:
> On Monday, August 15, 2016 at 9:24:04 AM UTC+12, Rudra Banerjee wrote:
> > but while running the application, I am getting error:
> > (mkbib:14843): Gtk-CRITICAL **: New application windows must be added after
> > the GAp
On Monday, August 15, 2016 at 9:24:04 AM UTC+12, Rudra Banerjee wrote:
> but while running the application, I am getting error:
> (mkbib:14843): Gtk-CRITICAL **: New application windows must be added after
> the GApplication::startup signal has been emitted.
Does the application actually fail?
Be
Plz ignore src/Mkbib/mkbib.in file, as appeared in the tree
--
https://mail.python.org/mailman/listinfo/python-list
Hi,
I am trying to compile a python project using autotools. The project runs
absolutely fine from command line, and it uses Gtk3 library.
the src file is:
├── src
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── Mkbib
│ │ ├── cell.py
│ │ ├── dialogue.py
│ │ ├── filemanager.py
│ │