[PATCH] fix "stg float -s FILE" for FILE != "-"

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

 



The commit:

  commit 5a1bab1ad60688471e100e310c58c7e60d18cd80
  Author: Catalin Marinas <catalin.marinas@xxxxxxx>
  Date:   Thu Apr 9 23:40:59 2009 +0300

      Convert "float" to the lib infrastructure

introduces a bug in "stg float -s FILE" when FILE is not equal to "-".
This patches fixes this issue.

Signed-off-by: Hannes Eder <heder@xxxxxxxxxx>
---
 stgit/commands/float.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/stgit/commands/float.py b/stgit/commands/float.py
index e561c39..9316398 100644
--- a/stgit/commands/float.py
+++ b/stgit/commands/float.py
@@ -16,6 +16,7 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 """
 
+import re
 import sys
 from stgit.argparse import opt
 from stgit.commands import common
@@ -55,7 +56,7 @@ def func(parser, options, args):
         if options.series == '-':
             f = sys.stdin
         else:
-            f = file(args[0])
+            f = file(options.series)
 
         patches = []
         for line in f:

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]