Re: [PATCH 04/47] Removed partedUtils.get_flags(), functionality now in pyparted.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



looks good
----- "David Cantrell" <dcantrell@xxxxxxxxxx> wrote:

> This function was only used inside partedUtils.py, but it seemed
> reasonable to move it in to the new pyparted.
> ---
>  partedUtils.py |   19 +------------------
>  1 files changed, 1 insertions(+), 18 deletions(-)
> 
> diff --git a/partedUtils.py b/partedUtils.py
> index 0a109a4..1096e5f 100644
> --- a/partedUtils.py
> +++ b/partedUtils.py
> @@ -48,23 +48,6 @@ log = logging.getLogger("anaconda")
>  import gettext
>  _ = lambda x: gettext.ldgettext("anaconda", x)
>  
> -def get_flags (part):
> -    """Retrieve a list of strings representing the flags on the
> partition."""
> -    string=""
> -    if not part.is_active ():
> -        return string
> -    first=1
> -    flag = parted.partition_flag_next (0)
> -    while flag:
> -        if part.get_flag (flag):
> -            string = string + parted.partition_flag_get_name (flag)
> -            if first:
> -                first = 0
> -            else:
> -                string = string + ", "
> -        flag = parted.partition_flag_next (flag)
> -    return string
> -
>  def start_sector_to_cyl(device, sector):
>      """Return the closest cylinder (round down) to sector on
> device."""
>      return int(math.floor((float(sector)
> @@ -1307,7 +1290,7 @@ class DiskSet:
>                          device = get_partition_name(part)
>                      if part.fs_type:
>                          fs_type_name = part.fs_type.name
> -                    partFlags = get_flags (part)
> +                    partFlags = part.getFlags()
>                      rc = rc + ("%-9s %-12s %-12s %-10ld %-10ld %-10ld
> %7s\n"
>                                 % (device, part.type_name,
> fs_type_name,
>                                part.geom.start, part.geom.end,
> part.geom.length,
> -- 
> 1.6.1.3
> 
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list@xxxxxxxxxx
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list

-- 
Joel Andres Granados
Red Hat / Brno Czech Republic

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux