* usr/bin/byobu-ugraph:

- clean up trailing whitespace
This commit is contained in:
Dustin Kirkland 2013-12-16 20:05:08 -06:00
commit ce9a25e7ad
2 changed files with 10 additions and 8 deletions

2
debian/changelog vendored
View file

@ -17,6 +17,8 @@ byobu (5.68) unreleased; urgency=low
- prefer python, then python2, then python3
* debian/control:
- silence lintian warning with a build-dep on python-support
* usr/bin/byobu-ugraph:
- clean up trailing whitespace
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 02 Dec 2013 18:46:28 -0600

View file

@ -134,36 +134,36 @@ get_data()
while getopts "f:hm:np:rt:x:" opt
do
case "$opt" in
f)
f)
file="$OPTARG"
;;
h)
h)
usage
exit 0
;;
m)
m)
min=$OPTARG
;;
n)
n)
newline=
;;
p)
p)
points=$OPTARG
;;
r)
r)
rotate=n
;;
t)
t)
theme="$OPTARG"
;;
x)
x)
max=$OPTARG
;;
esac