Staging
v0.5.0
https://foss.heptapod.net/mercurial/hgview
Revision d5fa1d5c7ba96e783e5242d8babc53b83f48db8b authored by Sean Farley on 15 November 2013, 20:02:09 UTC, committed by Sean Farley on 15 November 2013, 20:02:09 UTC
Previously, the 'status' variable was initialized with the integer '1' so that
the 'if status is None' statement would fail and then a default value of
'status.lower()' was used but this would fail since status is an integer. After
this patch, we try to convert from an integer first, then fall back to using a
default value.
1 parent ef4401e
Raw File
Tip revision: d5fa1d5c7ba96e783e5242d8babc53b83f48db8b authored by Sean Farley on 15 November 2013, 20:02:09 UTC
hgrepoviewer: fix int conversion
Tip revision: d5fa1d5
MANIFEST.in
exclude .hgignore
recursive-exclude debian *
recursive-exclude test *
recursive-exclude debian.hardy *
recursive-exclude debian.lenny *
recursive-exclude debian.intrepid *

include ChangeLog
include COPYING
include README

include bin/hgview
include bin/hgview.bat

include hgviewlib/qt4/*.ui
include hgviewlib/qt4/*.py
include hgviewlib/qt4/hgqv.qrc
include hgviewlib/qt4/icons/*

include hgviewlib/curses/*.py

include doc/hgview.1.txt
include doc/Makefile
include hgext/hgview.py

include hgext/hgview.rc
include doc/hgqv.1
include setup.py
include __pkginfo__.py
include test/data/hgviewrc
include test/data/.hgviewrc


recursive-include etc *
back to top